Cargo.toml 2.28 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]
Hero Bird's avatar
Hero Bird committed
18
19
20
21
22
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
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 }
Andrew Jones's avatar
Andrew Jones committed
42
scale-info = { version = "0.1", default-features = false, features = ["derive"], optional = true }
43

44
[dev-dependencies]
45
itertools = "0.9"
46

47
[features]
48
default = ["std"]
49
std = [
Hero Bird's avatar
Hero Bird committed
50
    "ink_abi/std",
51
    "ink_alloc/std",
52
    "ink_prelude/std",
53
    "ink_primitives/std",
54
    "scale/std",
Andrew Jones's avatar
Andrew Jones committed
55
    "scale-info/std",
56
57
58
    "rand",
    "rand/std",
    "num-traits/std",
59
60
    # Enables hashing crates for off-chain environment.
    "sha2",
61
62
    "sha3",
    "blake2",
63
]
Hero Bird's avatar
Hero Bird committed
64
65
ink-generate-abi = [
    "ink_abi",
Andrew Jones's avatar
Andrew Jones committed
66
    "scale-info",
Hero Bird's avatar
Hero Bird committed
67
    "std",
Hero Bird's avatar
Hero Bird committed
68
]