feat: add uploader

This commit is contained in:
2026-04-29 19:26:59 +09:00
parent 960cf95df9
commit 68d4294049
7 changed files with 122 additions and 2 deletions

12
uploader/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "klog-uploader"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
hex = "0.4.3"
klog-types = { version = "0.1.0", path = "../types" }
reqwest = { version = "0.13.3", features = ["json", "multipart"] }
sha2 = "0.11.0"
tokio = { version = "1.52.1", features = ["fs"] }