Cargo.toml 1.6 KiB
Newer Older
version = "0.3.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2018"

license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/paritytech/cargo-contract"
Hero Bird's avatar
Hero Bird committed
documentation = "https://substrate.dev/substrate-contracts-workshop/#/"
homepage = "https://www.parity.io/"
description = "Setup and deployment tool for developing Wasm based smart contracts via ink!"
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["cli", "tool"]

[dependencies]
Hero Bird's avatar
Hero Bird committed
env_logger = "0.7"
Hero Bird's avatar
Hero Bird committed
structopt = "0.3"
log = "0.4"
zip = { version = "0.5", default-features = false }
codec = { package = "parity-scale-codec", version = "1.1" }
# dependencies for optional extrinsics feature
async-std = { version = "1.2.0", optional = true }
sp-core = { git = "https://github.com/paritytech/substrate/", package = "sp-core", optional = true }
subxt = { git = "https://github.com/paritytech/substrate-subxt/", rev = "399ac68cb1547ba4879e389c28d72aa7a2bae139", package = "substrate-subxt", optional = true }
futures = { version = "0.3.1", optional = true }
Qinxuan Chen's avatar
Qinxuan Chen committed
url = { version = "1.7", optional = true }
hex = { version = "0.4.0", optional = true }

[build-dependencies]
zip = { version = "0.5", default-features = false }
Hero Bird's avatar
Hero Bird committed
walkdir = "2.2"

[dev-dependencies]

[features]
default = []
extrinsics = ["sp-core", "subxt", "async-std", "futures", "url", "hex"]
test-ci-only = []