-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
44 lines (39 loc) · 1.27 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
42
43
44
[package]
name = "monero-rpc"
version = "0.4.0"
authors = ["Artem Vorotnikov <[email protected]>", "Monero Rust Contributors"]
edition = "2021"
exclude = ["/test"]
keywords = ["asynchronous", "net", "monero", "rpc"]
license = "Apache-2.0"
repository = "https://github.com/monero-rs/monero-rpc-rs"
rust-version = "1.63.0"
description = "RPC client for Monero daemon and wallet"
[dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
diqwest = { version = "1.2.1", default-features = false, optional = true }
fixed-hash = "0.8"
hex = "0.4"
http = "1.1"
jsonrpc-core = "18"
monero = { version = "0.21", features = ["serde"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "socks"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
uuid = { version = "1.1", features = ["v4"] }
[dev-dependencies]
# Async
rand = "0.8.4"
rustc-hex = "2.1"
serde_test = "1.0"
tokio = { version = "1.12.0", features = ["full"] }
[features]
default = ["native-tls"]
rpc_authentication = ["diqwest"]
native-tls = ["reqwest/native-tls", "diqwest/default"]
rustls-tls = ["reqwest/rustls-tls-native-roots", "diqwest/rustls-tls"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]