From 982e03cbc0ffb550207ed67fb10f474fa39b6ac8 Mon Sep 17 00:00:00 2001
From: Eemeli <eemeli.o.lehtonen@utu.fi>
Date: Mon, 26 Dec 2022 23:03:35 +0200
Subject: [PATCH] no dependency boot

---
 Cargo.toml  | 11 +++++++++++
 src/main.rs |  3 ---
 2 files changed, 11 insertions(+), 3 deletions(-)
 delete mode 100644 src/main.rs

diff --git a/Cargo.toml b/Cargo.toml
index c48d5ab..099d9f7 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 e7a11a9..0000000
--- a/src/main.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-fn main() {
-    println!("Hello, world!");
-}
-- 
GitLab