forked from monero-rs/monero-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (49 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "monero"
description = "Rust Monero Library."
keywords = ["monero"]
version = "0.12.0"
authors = ["h4sh3d <[email protected]>"]
license = "MIT"
homepage = "https://github.com/monero-rs/monero-rs"
repository = "https://github.com/monero-rs/monero-rs"
documentation = "https://docs.rs/monero"
readme = "README.md"
include = [
"src/*",
"README.md",
"LICENSE",
]
edition = "2018"
[features]
default = ["full"]
full = ["fixed-hash/std", "fixed-hash/rand", "rand/std"]
serde_support = ["serde", "serde-big-array"]
strict_encoding_support = ["strict_encoding"]
[dependencies]
hex = "0.4.3"
hex-literal = "0.3.1"
keccak-hash = "0.7.0"
tiny-keccak = "2"
base58-monero = { version = "0.3", default-features = false }
serde = { version = "1.0.124", features = ["derive"], optional = true }
serde-big-array = { version = "0.3.2", optional = true }
curve25519-dalek = { version = "3.0.2", features = ["serde"] }
thiserror = "1.0.24"
strict_encoding = { version = "1.2", optional = true }
subtle = { version = "2", default-features = false }
hash_edwards_to_edwards = { git = "https://github.com/comit-network/hash_edwards_to_edwards" }
integer-encoding = "3"
rand = { version = "0.7", optional = true }
lazy_static = "1"
clear_on_drop = { version = "0.2", default-features = false }
itertools = "0.10"
[dependencies.fixed-hash]
version = "0.7.0"
default-features = false
[dev-dependencies]
rand = { version = "0.7", features = ["std"] }
serde_json = "1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]