Cargo.toml 2.5 KiB
Newer Older
[workspace]
members = [".", "metadata"]

Michael Müller's avatar
Michael Müller committed
version = "0.11.1"
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"]
Andrew Jones's avatar
Andrew Jones committed
categories = ["command-line-utilities", "development-tools::build-utils", "development-tools::cargo-plugins"]
Andrew Jones's avatar
Andrew Jones committed
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE", "build.rs", "templates"]
zip = { version = "0.5.11", default-features = false }
cargo_metadata = "0.13.1"
codec = { package = "parity-scale-codec", version = "2.0.1", features = ["derive"] }
Andrew Jones's avatar
Andrew Jones committed
blake2 = "0.9.1"
contract-metadata = { version = "0.2.0", path = "./metadata" }
semver = { version = "0.11.0", features = ["serde"] }
serde = { version = "1.0.125", default-features = false, features = ["derive"] }
url = { version = "2.2.1", features = ["serde"] }
binaryen = { version = "0.12.0", optional = true }
# dependencies for optional extrinsics feature
async-std = { version = "1.9.0", optional = true }
sp-core = { version = "2.0.1", optional = true }
subxt = { version = "0.14.0", package = "substrate-subxt", optional = true }
futures = { version = "0.3.13", optional = true }
hex = { version = "0.4.3", optional = true }
# Should be removed once bitvecto-rs/bitvec#105 is resolved
funty = "=1.1.0"

[build-dependencies]
zip = { version = "0.5.11", default-features = false }

[dev-dependencies]

[features]
default = []
binaryen-as-dependency = ["binaryen"]

# Enable this for (experimental) commands to deploy, instantiate and call contracts.
#
# Disabled by default
extrinsics = ["sp-core", "subxt", "async-std", "futures", "hex"]

# Enable this to execute long running tests, which usually are only run on the CI server
#
# Disabled by default
test-ci-only = []