-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (31 loc) · 853 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
28
29
30
31
32
33
34
[package]
name = "drib"
version = "1.0.1"
authors = ["Andre Nathan <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
bincode = "1"
clap = { version = "3.1.12", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.8"
humantime = "2"
ipnet = { version = "2.3", features = ["serde"] }
iprange = "0.6"
lazy_static = "1"
log = "0.4"
num_cpus = "1"
regex = "1"
reqwest = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.8"
tera = { version = "1", default-features = false }
tokio = { version = "1.0", features = ["full"] }
trust-dns-resolver = "0.20"
url = "2"
[dev-dependencies]
hyper = { version = "0.14", features = ["server"] }
rand = "0.8"
tempdir = "0.3"