Cargo.toml 1.45 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 }
sp-core = { git = "https://github.com/paritytech/substrate/", package = "sp-core", optional = true }
subxt = { git = "https://github.com/paritytech/substrate-subxt/", rev = "b159d0dae1100dffcaa9f6f1eae57c62d1c31470", package = "substrate-subxt", optional = true }
Qinxuan Chen's avatar
Qinxuan Chen committed
tokio = { version = "0.1", optional = true }
futures = { version = "0.1", optional = true }
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", "tokio", "futures", "url", "hex"]
test-ci-only = []