Cargo.toml 1.71 KB
Newer Older
1
[package]
2
name = "ink_lang"
Hero Bird's avatar
Hero Bird committed
3
version = "3.0.0-rc2"
Hero Bird's avatar
Hero Bird committed
4
authors = ["Parity Technologies <admin@parity.io>", "Robin Freyler <robin@parity.io>"]
5
6
edition = "2018"

7
license = "Apache-2.0"
8
readme = "README.md"
Hero Bird's avatar
Hero Bird committed
9
repository = "https://github.com/paritytech/ink"
Hero Bird's avatar
Hero Bird committed
10
documentation = "https://docs.rs/ink_lang/"
Hero Bird's avatar
Hero Bird committed
11
homepage = "https://www.parity.io/"
12
description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
13
14
15
16
17
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]

[dependencies]
Hero Bird's avatar
Hero Bird committed
18
19
20
21
22
23
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 }
24

25
scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
26
derive_more = { version = "0.99", default-features = false, features = ["from"] }
27
static_assertions = "1.1"
28
29

[features]
30
default = ["std"]
31
std = [
32
33
    "ink_metadata",
    "ink_metadata/std",
34
    "ink_prelude/std",
35
    "ink_primitives/std",
36
37
    "ink_env/std",
    "ink_storage/std",
38
    "ink_lang_macro/std",
39
    "scale/std",
40
]
41
42
43
44

# 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"]