summaryrefslogtreecommitdiff
path: root/scarymaze/Cargo.toml
blob: acee02f7a0446411ea2cf02d162edf8104cfc1c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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'