-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 1.01 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
47
[package]
name = "otr-processor"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "otr_processor"
path = "src/lib.rs"
[[bin]]
name = "otr-processor"
path = "src/main.rs"
[dependencies]
dotenv = "0.15.0"
indicatif = "0.17.7"
serde = { version = "1.0.196", features = ["derive"] }
tokio = { version = "1.36.0", features = ["full"] }
chrono = { version = "0.4.33", features = ["serde"] }
openskill = "0.0.1"
serde_repr = "0.1.18"
lazy_static = "1.4.0"
itertools = "0.12.1"
indexmap = "2.2.6"
approx = "0.5.1"
strum = "0.26.3"
strum_macros = "0.26.4"
criterion = "0.5.1"
tokio-postgres = { version = "0.7.11", features = ["with-chrono-0_4"] }
postgres-types = "0.2.7"
rand_chacha = "0.3.1"
rand = "0.8.5"
thiserror = "1.0.56"
log = "0.4.22"
env_logger = "0.11.6"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[lints.rust]
dead_code = "allow"
unused_variables = "allow"
[profile.release]
debug = true