-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 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
[package]
name = "base58-monero"
version = "2.0.0"
authors = ["Monero Rust Contributors", "h4sh3d <[email protected]>"]
documentation = "https://docs.rs/base58-monero"
homepage = "https://github.com/monero-rs/base58-monero"
include = [
"src/*",
"README.md",
"LICENSE",
]
keywords = ["monero", "base58", "base58-check"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/monero-rs/base58-monero"
description = "Library with support for encoding/decoding Monero base58 strings."
edition = "2021"
rust-version = "1.63.0"
[package.metadata]
[features]
std = ["thiserror"]
check = ["tiny-keccak"]
stream = ["std", "tokio", "async-stream", "futures-util"]
default = ["std"]
[dependencies]
async-stream = { version = "0.3", optional = true, default-features = false }
futures-util = { version = "0.3.1", optional = true, default-features = false }
thiserror = { version = "1", optional = true }
tiny-keccak = { version = "2.0.1", features = ["keccak"], optional = true, default-features = false }
tokio = { version = "1", features = ["io-util"], optional = true, default-features = false }
[dev-dependencies]
hex = "0.4"
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]