20 lines
489 B
TOML
20 lines
489 B
TOML
[package]
|
|
name = "klog"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
klog-types = { path = "../types" }
|
|
clap = { version = "4.6.1", features = ["derive", "env"] }
|
|
tokio = { version = "1.52.1", features = ["full"] }
|
|
reqwest = { version = "0.13.3", features = ["form", "json", "multipart"] }
|
|
serde_json = "1.0.149"
|
|
sha2 = "0.11.0"
|
|
hex = "0.4.3"
|
|
zip = "8.6.0"
|
|
walkdir = "2.5.0"
|
|
anyhow = "1.0.102"
|
|
rand = "0.10.1"
|
|
base64 = "0.22.1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|