-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
46 lines (38 loc) · 991 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Root Crate
[package]
name = "walletconnect_sdk"
version = "0.1.0"
edition = "2021"
authors = ["WalletConnect Team"]
license = "Apache-2.0"
[workspace]
members = ["blockchain_api", "relay_client", "relay_rpc"]
[features]
default = ["full"]
full = ["client", "rpc"]
client = ["dep:relay_client"]
rpc = ["dep:relay_rpc"]
[dependencies]
relay_client = { path = "./relay_client", optional = true }
relay_rpc = { path = "./relay_rpc", optional = true }
[dev-dependencies]
anyhow = "1"
structopt = { version = "0.3", default-features = false }
tokio = { version = "1.22", features = ["full"] }
url = "2.3"
warp = { version = "0.3", default-features = false }
serde_json = "1.0"
rand = "0.8.5"
futures-util = "0.3"
once_cell = "1.19"
[[example]]
name = "websocket_client"
required-features = ["client", "rpc"]
[[example]]
name = "http_client"
required-features = ["client", "rpc"]
[[example]]
name = "webhook"
required-features = ["client", "rpc"]
[lints.clippy]
indexing_slicing = "deny"