mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-28 18:10:38 +00:00
22 lines
549 B
TOML
22 lines
549 B
TOML
[package]
|
|
name = "signal-cli-client"
|
|
version = "0.0.1"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["cargo", "derive", "wrap_help"] }
|
|
serde = "1"
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt", "macros", "net", "rt-multi-thread"] }
|
|
jsonrpsee = { version = "0.25", features = [
|
|
"macros",
|
|
"async-client",
|
|
"http-client",
|
|
] }
|
|
bytes = "1"
|
|
tokio-util = "0.7"
|
|
futures-util = "0.3"
|
|
thiserror = "2"
|