[package] name = "ink_lang" version = "3.0.0-rc2" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2018" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/paritytech/ink" documentation = "https://docs.rs/ink_lang/" homepage = "https://www.parity.io/" description = "[ink!] Rust based eDSL for writing smart contracts for Substrate" keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] ink_env = { version = "3.0.0-rc2", path = "../env", default-features = false } ink_storage = { version = "3.0.0-rc2", path = "../storage", default-features = false } ink_primitives = { version = "3.0.0-rc2", path = "../primitives", default-features = false } ink_metadata = { version = "3.0.0-rc2", path = "../metadata", default-features = false, optional = true } ink_prelude = { version = "3.0.0-rc2", path = "../prelude/", default-features = false } ink_lang_macro = { version = "3.0.0-rc2", path = "macro", default-features = false } scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] } derive_more = { version = "0.99", default-features = false, features = ["from"] } static_assertions = "1.1" [features] default = ["std"] std = [ "ink_metadata", "ink_metadata/std", "ink_prelude/std", "ink_primitives/std", "ink_env/std", "ink_storage/std", "ink_lang_macro/std", "scale/std", ] # The feature is not yet utilized in this crate, but we need to add it # here already anyway, since the CI tries to execute fuzzing on each crate. ink-fuzz-tests = ["std"]