summaryrefslogtreecommitdiff
path: root/scarymaze/Cargo.toml
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2021-04-06 12:23:00 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2021-04-06 12:25:17 -0400
commit983cd29f5a2c3d9cd1d6a9c4f343adcffe54f88c (patch)
tree395f4bf2dfe097d9d09413ad1b805765b2e7eae0 /scarymaze/Cargo.toml
Initial import.HEADmaster
Diffstat (limited to 'scarymaze/Cargo.toml')
-rw-r--r--scarymaze/Cargo.toml30
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'