diff --git a/Cargo.toml b/Cargo.toml index c48d5ab239d4721366dbf546c0fd5b5de33dc301..099d9f7ad6e4dc9bf909a66f4bcfd0f922652afc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,4 +5,15 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[lib] +crate-type = ["staticlib"] + +[profile.release] +debug = 1 + [dependencies] + + +[build-dependencies] +#cc = "1.0.78" +nasm-rs = "0.2.4" diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index e7a11a969c037e00a796aafeff6258501ec15e9a..0000000000000000000000000000000000000000 --- a/src/main.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("Hello, world!"); -}