]> nmode's Git Repositories - signal-cli/blob - client/Cargo.toml
Add support for banning/unbanning group members
[signal-cli] / client / Cargo.toml
1 [package]
2 name = "signal-cli-client"
3 version = "0.0.1"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 anyhow = "1"
10 clap = { version = "3", features = ["cargo", "derive"] }
11 jsonrpc-core = "18"
12 jsonrpc-core-client = "18"
13 jsonrpc-client-transports = { version = "18", default-features = false, features = [
14 "ipc",
15 ] }
16 jsonrpc-derive = "18"
17 jsonrpc-server-utils = "18"
18 log = "0.4"
19 serde = "1"
20 serde_json = "1"
21 tokio = { version = "1", features = ["rt", "macros", "net"] }
22
23 [patch.crates-io]
24 jsonrpc-client-transports = { git = "https://github.com/AsamK/jsonrpc", branch = "client_subscribe_named_params" }
25 jsonrpc-derive = { git = "https://github.com/AsamK/jsonrpc", branch = "client_subscribe_named_params" }