-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (38 loc) · 1.13 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
[package]
name = "icfpc2023"
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"
rand = "=0.7.3"
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"
glob = "0.3.0"
clap = { version = "4.3", features = ["derive"] }
aes-gcm = "0.9"
aead = "0.3"
hex = "0.4"
actix-web = { version = "4.0.0-beta.9", optional = true }
actix-files = { version = "0.6.2", optional = true }
flatten-json-object = "0.6.1"
handlebars = "3"
mysql = { version = "20.1.0", optional = true }
num = "0.4.0"
regex = "1.5.4"
resvg = { version = "0.35.0", optional = true }
num-format = "0.4.4"
percent-encoding = "2.3.0"
chrono-humanize = "0.2.2"
chrono = "0.4.26"
[profile.release]
debug = true