forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 777 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
[package]
name = "ic-certified-map"
version = "0.3.4"
edition = "2021"
authors = ["DFINITY Stiftung <[email protected]>"]
description = "Merkleized map data structure."
homepage = "https://docs.rs/ic-certified-map"
documentation = "https://docs.rs/ic-certified-map"
license = "Apache-2.0"
readme = "README.md"
categories = ["data-structures", "cryptography", "cryptography::cryptocurrencies"]
keywords = ["internet-computer", "types", "dfinity", "map"]
include = ["src", "Cargo.toml", "CHANGELOG.md", "LICENSE", "README.md"]
repository = "https://github.com/dfinity/cdk-rs"
rust-version = "1.60.0"
[dependencies]
serde = "1"
serde_bytes = "0.11"
sha2 = "0.10"
[dev-dependencies]
hex = "0.4"
serde_cbor = "0.11"
ic-cdk = { path = "../../src/ic-cdk" }
candid = "0.8"
serde = "1"