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

license = "GPL-3.0"
readme = "README.md"
Hero Bird's avatar
Hero Bird committed
repository = "https://github.com/paritytech/ink"
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"]
Hero Bird's avatar
Hero Bird committed
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
Hero Bird's avatar
Hero Bird committed
env_logger = "0.7"
derive_more = { version = "0.99.2", default-features = false, features = ["from", "display"] }
structopt = "0.3"
log = "0.4"
futures = "0.1.28"
Hero Bird's avatar
Hero Bird committed
jsonrpc-core-client = { version = "14.0", features = ["ws"] }
zip = { version = "0.5", default-features = false }
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.21"
url = "1.7"

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

[dev-dependencies]
wabt = "0.9.0"

[features]
default = []
test-ci-only = []