Initial commit

This commit is contained in:
2025-11-20 06:40:32 -06:00
commit f43ac14e2a
9 changed files with 2344 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "updatecheck"
version = "0.1.0"
edition = "2024"
[dependencies]
#bytes = "1.11.0"
chrono = { version = "0.4.42", default-features = false, features = ["serde"] }
reqwest = { version = "0.12.24", features = ["json"] }
#ruzstd = "0.8.2"
serde = { version = "1.0.228", features = ["derive"] }
#serde-xml-rs = "0.8.2"
tokio = { version = "1.48.0", default-features = false, features = ["rt", "macros"] }
toml = "0.9.8"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }