-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (41 loc) · 1014 Bytes
/
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
45
46
47
[package]
name = "icfpc2021"
version = "0.1.0"
edition = "2018"
[lib]
crate-type = ["rlib", "cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["console_error_panic_hook", "wee_alloc"]
[dependencies]
chrono = "0.4.19"
docopt = "1.1.1"
glob = "0.3.0"
image = "*"
indicatif = "0.16.2"
num = "*"
ordered-float = "2.6.0"
rand = "*"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_skip = "0.1.0"
svg = "*"
structopt = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "*", features = ["serde-serialize"] }
# js-sys = "*"
web-sys = { version = "*", features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Performance',
'PerformanceTiming',
'Window',
"console",
] }
console_error_panic_hook = { version = "*", optional = true }
wee_alloc = { version = "*", optional = true }
getrandom = { version = "*", features = ["js"] }
[profile.release]
debug = true