summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2025-07-03 14:56:25 +1200
committerBen Bridle <ben@derelict.engineering>2025-07-03 21:22:31 +1200
commit21101c197643836184e754c60d5075ee5a2d3cdf (patch)
treecc4533251bfce394e913009473b7dd49b3bbb1ac /Cargo.toml
downloadbedrock-asm-21101c197643836184e754c60d5075ee5a2d3cdf.zip
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..9673558
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "bedrock-asm"
+version = "0.1.0"
+authors = ["Ben Bridle"]
+edition = "2024"
+description = "Assembler for the Bedrock assembly language"
+
+[dependencies]
+assembler = { git = "git://benbridle.com/assembler", tag = "v2.3.0" }
+log = { git = "git://benbridle.com/log", tag = "v2.0.0" }
+switchboard = { git = "git://benbridle.com/switchboard", tag = "v2.1.0" }
+
+[profile.release]
+lto=true
+opt-level="s"
+debug=false
+strip=true
+codegen-units=1