diff options
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 |