Cargo.toml 2.25 KB
Newer Older
Hero Bird's avatar
Hero Bird committed
[package]
Hero Bird's avatar
Hero Bird committed
version = "2.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
Hero Bird's avatar
Hero Bird committed
edition = "2018"

license = "APACHE-2.0"
Hero Bird's avatar
Hero Bird committed
readme = "README.md"
repository = "https://github.com/paritytech/ink"
Hero Bird's avatar
Hero Bird committed
documentation = "https://substrate.dev/substrate-contracts-workshop/#/"
homepage = "https://www.parity.io/"
description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
Hero Bird's avatar
Hero Bird committed
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
Hero Bird's avatar
Hero Bird committed
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
Hero Bird's avatar
Hero Bird committed

[dependencies]
Hero Bird's avatar
Hero Bird committed
ink_abi = { version = "2.1.0", path = "../abi/", default-features = false, features = ["derive"], optional = true }
ink_alloc = { version = "2.1.0", path = "../alloc/", default-features = false }
ink_primitives = { version = "2.1.0", path = "../primitives/", default-features = false }
ink_core_derive = { version = "2.1.0", path = "derive", default-features = false }
ink_prelude = { version = "2.1.0", path = "../prelude/", default-features = false }
Hero Bird's avatar
Hero Bird committed

scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] }
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
cfg-if = "0.1"
array-init = "0.1"
generic-array = "0.14.1"
paste = "0.1"

# Hashes for the off-chain environment.
sha2 = { version = "0.9", optional = true }
sha3 = { version = "0.9", optional = true }
blake2 = { version = "0.9", optional = true }

# Only used in the off-chain environment.
#
# Sadly couldn't be marked as dev-dependency.
# Never use this crate outside of the off-chain environment!
rand = { version = "0.7", default-features = false, features = ["alloc"], optional = true }
Andrew Jones's avatar
Andrew Jones committed
scale-info = { version = "0.1", default-features = false, features = ["derive"], optional = true }
[dev-dependencies]
[features]
default = ["std"]
Hero Bird's avatar
Hero Bird committed
    "ink_abi/std",
    "ink_prelude/std",
    "ink_primitives/std",
Andrew Jones's avatar
Andrew Jones committed
    "scale-info/std",
    "rand",
    "rand/std",
    "num-traits/std",
    # Enables hashing crates for off-chain environment.
    "sha2",
    "sha3",
    "blake2",