forked from ethpm/ethpm-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 848 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
[package]
name = "ethpm"
version = "0.1.0-alpha.2"
authors = ["Bryant Eisenbach <[email protected]>","Sean Coughlin <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Rust library for EthPM package manifest and registry operations"
homepage = "https://ethpm.github.io/ethpm-spec/"
repository = "https://github.com/ethpm/ethpm-rs"
[features]
default = ["serde", "serde_json"]
# enable support for the standard library
std = ["serde", "serde_json"]
no-std = ["serde-json-core"]
[dependencies]
clap = { version = "2.33" }
serde = { version = "1.0.80", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
serde-json-core = { version = "0.0.1", optional = true }
[dev-dependencies]
paste = "0.1"
proptest = "0.9.4"
web3 = "0.8.0"
assert_cmd = "0.10"
tempfile = "3.1.0"
[[bin]]
name = "ethpm"