feat: add klog

This commit is contained in:
2026-04-29 17:57:41 +09:00
commit f9f009fcd2
18 changed files with 3923 additions and 0 deletions

19
cli/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[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"] }