-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 1.08 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "maze"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["rlib","cdylib"]
name = "amazegen"
path = "src/lib.rs"
[[bin]]
name = "maze-mk"
path = "src/main.rs"
bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fastrand = {version="2", features=["js"]}
# fastrand won't work with wasm unless we also add this line.
# See here: https://github.com/smol-rs/fastrand/issues/27
instant = {version="*", features=["wasm-bindgen"]}
svg = "0.18"
hex = "0.4"
itertools = "0.13"
# Just here because of a bug. Remove when we get rid of plotters.
# See: https://github.com/plotters-rs/plotters/issues/554
plotters = "0.3"
pathfinder_simd = { version = "0.5.3", optional = true }
rand_chacha = "0.3"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.6"
[profile.release]
lto = true
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"]}
[[bench]]
name = "maze_synthesis"
harness = false