-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
51 lines (44 loc) · 1.76 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
[package]
name = "manta-sdk"
edition = "2021"
version = "1.3.1"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/Manta-Network/sdk"
homepage = "https://github.com/Manta-Network"
documentation = "https://github.com/Manta-Network/sdk"
categories = [""]
keywords = [""]
description = "Manta Network SDK"
include = ["LICENSE", "README.md", "data", "src/lib.rs"]
publish = false
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[badges]
is-it-maintained-issue-resolution = { repository = "Manta-Network/sdk" }
is-it-maintained-open-issues = { repository = "Manta-Network/sdk" }
maintenance = { status = "actively-developed" }
[features]
# Enable Standard Library
std = []
# Download Data from GitHub
download = ["anyhow/std", "attohttpc", "std"]
[dependencies]
anyhow = { version = "1.0.56", optional = true, default-features = false }
attohttpc = { version = "0.19.1", optional = true }
blake3 = { version = "1.3.1", default-features = false }
[dev-dependencies]
git2 = { version = "0.14.2", default-features = false }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
manta-sdk = { path = ".", default-features = false, features = ["download"] }
tempfile = { version = "3.3.0", default-features = false }
walkdir = { version = "2.3.2", default-features = false }
[build-dependencies]
anyhow = { version = "1.0.56", default-features = false, features = ["std"] }
blake3 = { version = "1.3.1", default-features = false, features = ["std"] }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
walkdir = { version = "2.3.2", default-features = false }