forked from dfinity/stable-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 782 Bytes
/
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
[package]
name = "ic-stable-structures"
version = "0.5.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"
[dev-dependencies]
criterion = "0.4.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
proptest = "1"
tempfile = "3.3.0"
[dependencies]
candid = { version = "0.8.4", optional = true}
[[bench]]
name = "benches"
harness = false
path = "benches/benches.rs"
[workspace]
members = [
"benchmark-canisters"
]