diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 22:19:11 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 22:19:11 +1300 |
commit | 77067f6e244a9cf4a6ef59df2e3d735b4f172c35 (patch) | |
tree | 74eb1a226da5b367f65e2f9012dc8d440e1ccce5 /Cargo.toml | |
download | bedrock-pc-78f08203e7c759ced9825b1baccaca8b9c4edc05.zip |
First commitv0.1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..db0a1a3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "bedrock_emu" +version = "0.1.0" +authors = ["Ben Bridle"] +edition = "2021" +description = "Emulator for running Bedrock programs" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +bedrock_core = { git = "git://benbridle.com/bedrock_core", tag = "v1.0.0" } +phosphor = { git = "git://benbridle.com/phosphor", tag = "v1.0.0" } +geometry = { git = "git://benbridle.com/geometry", tag = "v1.0.0" } + +mini_paste = "0.1.11" +time = { version = "0.3.30", features = [ "local-offset" ] } + +[profile.release] +lto=true +opt-level="s" +debug=false +strip=true +codegen-units=1 |