forked from nathan-at-least/zcashrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 1.11 KB
/
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
[package]
name = "zcashrpc"
version = "0.1.0"
edition = "2018"
[workspace]
members = ["zcashrpc-macros", "zcashrpc-typegen"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zcashrpc-macros = { path = "zcashrpc-macros" }
reqwest = { version = "0.10.8", features = ["json"] }
serde = { version = "*", features = ["derive"] }
serde_derive = "*"
serde_json = "*"
derive_more = "*"
base64 = "*"
dirs = { version = "*", optional = true }
rust_decimal = "*"
zcashrpc-api = { git = "https://github.com/zingolabs/zcashrpc-api.git", branch = "main" }
[dev-dependencies]
tokio = { version = "*", features = ["macros"] }
[build-dependencies]
tokio = { version = "0.2.23", features = ["macros"] }
reqwest = { version = "0.10.8", features = ["json"] }
serde = { version = "*", features = ["derive"] }
dirs = { version = "*", optional = true }
serde_json = "*"
base64 = "*"
[features]
default = ["cookie-finder"]
cookie-finder = ["dirs"]
[[test]]
name = "zcashrpc-smoke-tests"