-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
38 lines (36 loc) · 983 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
35
36
37
38
[package]
name = "kheish"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
reqwest = { version = "0.12.9", features = ["json"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
toml = "0.8.19"
thiserror = "2.0.7"
tracing = "0.1"
tracing-subscriber = {version = "0.3.19", features = ["env-filter", "registry"]}
tracing-appender = "0.2.3"
dotenvy = "0.15.0"
chrono = { version = "0.4", features = ["serde"] }
url = "2.4.0"
indicatif = "0.17.0"
dialoguer = "0.11.0"
colored = "2.2.0"
once_cell = "1.20.2"
dirs = "5.0.1"
axum = { version = "0.7.9", features = ["macros"] }
diesel = { version = "2.2.6", features = ["sqlite", "r2d2", "chrono"] }
uuid = { version = "1.4.1", features = ["v4"] }
r2d2 = "0.8"
r2d2-diesel = "1.0"
humantime = "2.1.0"
jsonschema = "0.27.0"
[profile.release]
lto = true
strip = true
codegen-units = 1