forked from monero-rs/monero-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 990 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
[package]
name = "monero"
description = "Rust Monero Library."
keywords = ["monero"]
version = "0.9.1"
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"]
serde_support = ["serde", "serde-big-array"]
[dependencies]
hex = "0.4"
byteorder = "1"
keccak-hash = "0.3"
base58-monero = "0.1"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version ="0.2.0", optional = true }
curve25519-dalek = { version ="2.0", features = ["serde"] }
thiserror = "^1.0.20"
[dependencies.fixed-hash]
version = "0.3"
features = ["libc"]
default-features = false
[badges]
travis-ci = { repository = "monero-rs/monero-rs", branch = "master" }