-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.33 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
45
46
[package]
name = "icfpc2024"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["tokio", "reqwest", "actix-web", "actix-files", "mysql", "resvg"]
[dependencies]
itertools = "0.10.3"
once_cell = "1.13.1"
# rayon = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
indicatif = "0.17.0"
reqwest = { version = "0.11", features = ["json"], optional = true }
tokio = { version = "1", features = ["full"], optional = true }
svg = "0.13.1"
anyhow = "1.0.71"
actix-web = { version = "4.0.0-beta.9", optional = true }
actix-files = { version = "0.6.2", optional = true }
handlebars = "3"
mysql = { version = "20.1.0", optional = true }
resvg = { version = "0.35.0", optional = true }
chrono-humanize = "0.2.2"
chrono = "0.4.26"
num-bigint = "0.4.6"
clap = { version = "4.5.7", features = ["derive"] }
num-traits = "0.2"
num = { version = "0.4.3", features = ["num-bigint"] }
fs_extra = "1.3.0"
rand = { version = "=0.8.5", features = ["small_rng", "min_const_gen"] }
getrandom = { version = "=0.2.10", features = ["js"] }
rand_chacha = "=0.3.1"
rand_core = "=0.6.4"
rand_hc = "=0.3.2"
rand_pcg = "=0.3.1"
rand_distr = "=0.4.3"
rustc-hash = "=1.1.0"
rayon = "1.5"
[profile.release]
debug = true