diff --git a/_primitives/_rust/Cargo.toml b/_primitives/_rust/Cargo.toml index d7affe5..4cabd3e 100644 --- a/_primitives/_rust/Cargo.toml +++ b/_primitives/_rust/Cargo.toml @@ -184,9 +184,13 @@ members = [ [workspace.package] edition = "2021" rust-version = "1.77" +authors = ["Denis Parfionovich "] +license = "Apache-2.0" +repository = "https://github.com/KeiSei84/KeiSeiKit-1.0" +homepage = "https://github.com/KeiSei84/KeiSeiKit-1.0" [workspace.dependencies] -clap = { version = "4", features = ["derive"] } +clap = { version = "4", features = ["derive", "env"] } serde = { version = "1", features = ["derive"] } serde_json = "1" serde_yaml = "0.9" @@ -205,6 +209,9 @@ walkdir = "2" pretty_assertions = "1" # Shared async + HTTP deps (Waves 31/32/33/35/36 etc — kei-tty / kei-router / etc) tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "net", "time", "process", "fs", "io-util", "sync"] } +tower = { version = "0.4", features = ["limit", "buffer", "util"] } +dashmap = "5" +notify = "8" tokio-stream = "0.1" futures = "0.3" reqwest = { version = "0.12", features = ["json", "stream", "multipart", "rustls-tls"], default-features = false }