-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (30 loc) · 1.14 KB
/
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
35
36
37
38
[package]
name = "yenowa-errors"
version = "0.1.0"
edition = "2021"
[features]
runtime = ["actix-web", "clickhouse", "time", "uuid", "serde/derive", "env", "env_logger", "log"]
test = ["tokio", "env"]
env = ["dotenvy"]
rustls = ["reqwest/rustls-tls"]
default = ["runtime", "test", "rustls", "env"]
[[bin]]
name = "runtime"
path = "src/bin/runtime.rs"
required-features = ["runtime"]
[[bin]]
name = "test"
path = "src/bin/test.rs"
required-features = ["test"]
[dependencies]
serde_json = { version = "1.0.133" }
serde = { version = "1.0.215" }
reqwest = { version = "0.12.9", features = ["json"], default-features = false }
dotenvy = { version = "0.15.7", optional = true }
actix-web = { version = "4.9.0", features = ["rustls"], optional = true }
clickhouse = { version = "0.13.1", features = ["rustls-tls", "time", "uuid"], optional = true }
time = { version = "0.3.36", features = ["serde"], optional = true }
uuid = { version = "1.11.0", features = ["serde", "v4"], optional = true }
env_logger = { version = "0.11.5", optional = true }
log = { version = "0.4.22", optional = true }
tokio = { version = "1.41.1", features = ["rt", "macros"], optional = true }