2025-08-14 20:29:19 +03:00
|
|
|
[package]
|
|
|
|
|
name = "gurty"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["FaceDev"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/outpoot/gurted"
|
|
|
|
|
description = "GURT protocol server CLI tool"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "gurty"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
gurt = { path = "../library" }
|
|
|
|
|
|
|
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
|
|
|
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
|
colored = "2.0"
|
2025-08-19 22:01:20 +05:30
|
|
|
mime_guess = "2.0"
|
|
|
|
|
async-trait = "0.1"
|
|
|
|
|
toml = "0.8"
|
|
|
|
|
regex = "1.0"
|
|
|
|
|
indexmap = "2.0"
|