-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (40 loc) · 893 Bytes
/
Cargo.toml
File metadata and controls
48 lines (40 loc) · 893 Bytes
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
48
[package]
name = "eve-frontiers-toolbox"
version = "0.1.0"
edition = "2021"
default-run = "cli"
[lib]
name = "eftb"
path = "backend/lib.rs"
[[bin]]
name = "cli"
path = "backend/cli.rs"
[[bin]]
name = "web"
path = "backend/web.rs"
[[bench]]
name = "path"
harness = false
[[bench]]
name = "data"
harness = false
[dependencies]
anyhow = "1.0.102"
rkyv = "0.8"
clap = { version = "4.5.60", features = ["derive"] }
env_logger = "0.11.9"
indexmap = "2.14.0"
indicatif = { version = "0.18.4", features = ["rayon"] }
log = "0.4.29"
num-traits = "0.2.19"
rayon = "1.11.0"
rocket = { version = "0.5.1", features = ["serde_json", "json"] }
rustc-hash = "2.1.2"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.149"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
[lints.clippy]
dbg_macro = "deny"
unwrap_used = "deny"
#expect_used = "deny"