-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 821 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 821 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
[workspace]
members = [
"crates/scanner",
"crates/cli",
"crates/server",
]
resolver = "2"
[workspace.package]
version = "0.1.1-rc.2"
edition = "2021"
authors = ["Cameroon Developer Network <dev@cameroon-developer-network.org>"]
license = "MIT"
repository = "https://github.com/Cameroon-Developer-Network/zenvra"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
clap = { version = "4", features = ["derive"] }