diff options
Diffstat (limited to 'scarymaze/Cargo.toml')
| -rw-r--r-- | scarymaze/Cargo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scarymaze/Cargo.toml b/scarymaze/Cargo.toml new file mode 100644 index 0000000..acee02f --- /dev/null +++ b/scarymaze/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "scarymaze" +version = "0.1.0" +authors = ["Jakob L. Kreuze <zerodaysfordays@sdf.org>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +maze_generator = "1.1.1" +petgraph = "0.5.1" +sdl2 = "0.32" +async-std = "1.9.0" +futures = "0.3.4" +rand = "0.8.3" +openssl = "0.10.32" + +[[bin]] +name = "client" +path = "src/client.rs" + +[[bin]] +name = "server" +path = "src/server.rs" + +[profile.release] +opt-level = 'z' # Optimize for size. +lto = true +codegen-units = 1 +panic = 'abort' |