forked from monero-rs/monero-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.21 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
[package]
name = "monero"
version = "0.18.2"
authors = ["Monero Rust Contributors", "h4sh3d <h4sh3d@protonmail.com>"]
documentation = "https://docs.rs/monero"
edition = "2021"
homepage = "https://github.com/monero-rs/monero-rs"
include = [
"src/*",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
keywords = ["monero"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/monero-rs/monero-rs"
rust-version = "1.61"
description = "Rust Monero Library."
[features]
default = ["full"]
full = ["fixed-hash/std", "fixed-hash/rand"]
serde = ["serde-crate", "serde-big-array", "curve25519-dalek/serde"]
experimental = []
[dependencies]
base58-monero = { version = "1", default-features = false }
curve25519-dalek = { version = "4" }
hex = "0.4.3"
hex-literal = "0.4.1"
sealed = "0.5"
serde-big-array = { version = "0.5.1", optional = true }
serde-crate = { package = "serde", version = "1.0.124", features = ["derive"], optional = true }
thiserror = "1.0.24"
tiny-keccak = { version = "2", features = ["keccak"] }
[dev-dependencies]
serde_json = "1"
serde_test = "1"
[dependencies.fixed-hash]
version = "0.8.0"
default-features = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]