-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 852 Bytes
/
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
[package]
name = "workflow"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = { version = "1.0.104", features = ["preserve_order"] }
clap = { version = "4.3.5", features = ["derive"] }
reqwest = { version = "0.11.18", features = ["blocking"] }
anyhow = "1"
redis = { version = "0.23.0" }
postgres = { version = "0.19.5" }
dotenv = "0.15.0"
serde = { version = "1.0.164", features = ["derive"] }
bincode = "1.3.3"
ctrlc = "3.4.0"
rayon = "1.7.0"
chrono = { version = "0.4.26", features = ["serde"] }
serde_yaml = "0.9.21"
serde_derive = "1.0.164"
diesel = { version = "2.1.0", features = ["chrono", "postgres"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
tracing = "0.1.37"
prettytable-rs = "^0.10.0"
pnet = "0.34.0"