Files
leonwww/protocol/gurtca/Cargo.toml

21 lines
522 B
TOML
Raw Normal View History

2025-08-22 17:31:54 +03:00
[package]
name = "gurtca"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "gurtca"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
2025-09-09 19:01:46 +03:00
gurtlib = { path = "../library" }
2025-08-22 17:31:54 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
openssl = "0.10"
base64 = "0.22"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4"] }
reqwest = { version = "0.11", features = ["json"] }