-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 805 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 805 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
[package]
name = "rp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = ["derive"] }
serde-xml-rs = "0.6"
rayon = "1.8"
dashmap = { version = "5", features = ["rayon", "serde", "inline"] }
clap = { version = "4", features = ["derive", "env"] }
color-eyre = "0.6"
thiserror = "1"
walkdir = "2"
rand = "0.8"
rand_chacha = "0.3"
csv = "1.3"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
tokio = { version = "1.35", features = ["full", "tracing"] }
tracing = "0.1.40"
serde_json = "1"
console-subscriber = "0.2"
dotenv = "0.15"
indicatif = "0.17.7"
url = "2.5"
itertools = "0.12.0"
log = "0.4.20"
[profile.release]
lto = "fat"