-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathCargo.toml
88 lines (75 loc) · 2.66 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "ink_storage"
version = "3.0.0-rc3"
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/paritytech/ink"
documentation = "https://docs.rs/ink_storage/"
homepage = "https://www.parity.io/"
description = "[ink!] Data structures to organize and manipulate ink! contract storage."
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-rc3", path = "../env/", default-features = false }
ink_metadata = { version = "3.0.0-rc3", path = "../metadata/", default-features = false, features = ["derive"], optional = true }
ink_primitives = { version = "3.0.0-rc3", path = "../primitives/", default-features = false }
ink_storage_derive = { version = "3.0.0-rc3", path = "derive", default-features = false }
ink_prelude = { version = "3.0.0-rc3", path = "../prelude/", default-features = false }
scale = { package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive", "full"] }
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] }
scale-info = { version = "0.6", default-features = false, features = ["derive"], optional = true }
cfg-if = "1.0"
array-init = { version = "1.0", default-features = false, features = ["const-generics"] }
# 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 }
# Should be removed once bitvecto-rs/bitvec#105 is resolved
funty = "=1.1.0"
[dev-dependencies]
quickcheck = "1.0"
quickcheck_macros = "1.0"
itertools = "0.10"
paste = "1.0"
[features]
default = ["std"]
std = [
"criterion",
"ink_metadata",
"ink_metadata/std",
"ink_env/std",
"ink_prelude/std",
"ink_primitives/std",
"scale/std",
"scale-info",
"scale-info/std",
]
ink-fuzz-tests = ["std"]
[[bench]]
name = "bench_lazy"
path = "benches/bench_lazy.rs"
harness = false
[[bench]]
name = "bench_vec"
path = "benches/bench_vec.rs"
harness = false
[[bench]]
name = "bench_stash"
path = "benches/bench_stash.rs"
harness = false
[[bench]]
name = "bench_bitstash"
path = "benches/bench_bitstash.rs"
harness = false
[[bench]]
name = "bench_hashmap"
path = "benches/bench_hashmap.rs"
harness = false
[[bench]]
name = "bench_binary_heap"
path = "benches/bench_binary_heap.rs"
harness = false