-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
35 lines (31 loc) · 986 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
33
34
35
[package]
name = "ic-stable-structures"
version = "0.6.5"
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"
[dependencies]
ic_principal = { version = "0.1.1", default-features = false }
# An optional dependency to benchmark parts of the code.
canbench-rs = { version = "0.1.7", optional = true }
[dev-dependencies]
candid.workspace = true
hex = "0.4.3"
ic-cdk.workspace = true
ic-cdk-macros.workspace = true
maplit = "1.0.2"
proptest = "1"
tempfile = "3.3.0"
test-strategy = "0.3.1"
[workspace]
members = ["benchmarks"]
[workspace.dependencies]
candid = "0.10.3"
ic-cdk = "0.12.1"
ic-cdk-macros = "0.8.4"