[package] name = "cargo-contract" version = "0.2.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" license = "GPL-3.0" readme = "README.md" repository = "https://github.com/paritytech/cargo-contract" 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] env_logger = "0.7" anyhow = "1.0" structopt = "0.3" log = "0.4" heck = "0.3" zip = { version = "0.5", default-features = false } pwasm-utils = "0.12" parity-wasm = "0.41" cargo_metadata = "0.9" substrate-primitives = { git = "https://github.com/paritytech/substrate/", package = "substrate-primitives" } subxt = { git = "https://github.com/paritytech/substrate-subxt/", branch = "v0.3", package = "substrate-subxt" } tokio = "0.1" futures = "0.1" url = "1.7" [build-dependencies] anyhow = "1.0" zip = { version = "0.5", default-features = false } walkdir = "2.2" [dev-dependencies] assert_matches = "1.3" tempfile = "3.1" wabt = "0.9" [features] default = [] test-ci-only = []