forked from dfinity/stable-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.27 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
[package]
name = "ic-stable-structures"
version = "0.6.0-beta.2"
edition = "2021"
description = "A collection of data structures for fearless canister upgrades."
homepage = "https://docs.rs/ic-stable-structures"
documentation = "https://docs.rs/ic-stable-structures"
license = "Apache-2.0"
readme = "README.md"
keywords = ["internet-computer", "dfinity", "stable-structures"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]
repository = "https://github.com/dfinity/stable-structures"
# There are no benchmarks in the library itself, so by default it's turned off
# to avoid having `cargo bench` look for benchmarks there.
[lib]
bench = false
[dependencies]
# An optional dependency to profile parts of the code.
profiler = { path = "./profiler", optional = true }
[dev-dependencies]
candid.workspace = true
clap = { version = "4.0.11", features = ["derive"] }
colored = "2.0.4"
hex = "0.4.3"
ic-cdk.workspace = true
ic-cdk-macros.workspace = true
lazy_static = "1.4.0"
maplit = "1.0.2"
proptest = "1"
serde = "1.0"
serde_yaml = "0.9"
tempfile = "3.3.0"
test-strategy = "0.3.1"
[[bench]]
name = "benchmarks"
harness = false
path = "benchmarks/benchmark.rs"
[workspace]
members = [
"benchmark-canisters"
]
[workspace.dependencies]
candid = "0.9.5"
ic-cdk = "0.10.0"
ic-cdk-macros = "0.7.1"