Cargo.toml 2.91 KB
Newer Older
Hero Bird's avatar
Hero Bird committed
1
[package]
2
name = "ink_core"
Hero Bird's avatar
Hero Bird committed
3
version = "2.1.0"
4
authors = ["Parity Technologies <admin@parity.io>"]
Hero Bird's avatar
Hero Bird committed
5
6
edition = "2018"

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

[dependencies]
18
ink_metadata = { version = "2.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true }
Hero Bird's avatar
Hero Bird committed
19
20
21
22
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
23

24
scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
25
26
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] }
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
27
28
29
cfg-if = "0.1"
array-init = "0.1"
generic-array = "0.14.1"
30
31
32
paste = "0.1"

# Hashes for the off-chain environment.
33
34
35
sha2 = { version = "0.9", optional = true }
sha3 = { version = "0.9", optional = true }
blake2 = { version = "0.9", optional = true }
36
37
38
39
40

# 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!
41
rand = { version = "0.7", default-features = false, features = ["alloc"], optional = true }
42
scale-info = { version = "0.3", default-features = false, features = ["derive"], optional = true }
43

44
45
46
47
48
49
# Workaround: we actually just need criterion as a dev-dependency, but
# there is an issue with a doubly included std lib when executing
# `cargo check --no-default-features --target wasm32-unknown-unknown`.
# We haven't found a better solution yet.
criterion = { version = "0.3", optional = true }

50
[dev-dependencies]
51
52
quickcheck = "0.9"
quickcheck_macros = "0.8"
53
itertools = "0.9"
54

55
[features]
56
default = ["std"]
57
std = [
58
    "criterion",
59
60
    "ink_metadata",
    "ink_metadata/std",
61
    "ink_alloc/std",
62
    "ink_prelude/std",
63
    "ink_primitives/std",
64
    "scale/std",
65
    "scale-info",
Andrew Jones's avatar
Andrew Jones committed
66
    "scale-info/std",
67
68
69
    "rand",
    "rand/std",
    "num-traits/std",
70
71
    # Enables hashing crates for off-chain environment.
    "sha2",
72
73
    "sha3",
    "blake2",
74
]
75
ink-fuzz-tests = ["std"]
Hero Bird's avatar
Hero Bird committed
76
ink-unstable-chain-extensions = []
77

78
79
80
81
[[bench]]
name = "bench_lazy"
harness = false

82
[[bench]]
83
84
85
86
87
name = "bench_vec"
harness = false

[[bench]]
name = "bench_stash"
88
harness = false
89
90
91
92

[[bench]]
name = "bench_bitstash"
harness = false
93
94
95
96

[[bench]]
name = "bench_hashmap"
harness = false