forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.02 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
[package]
name = "ic-cdk"
version = "0.8.1"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Canister Developer Kit for the Internet Computer."
homepage = "https://docs.rs/ic-cdk"
documentation = "https://docs.rs/ic-cdk"
license = "Apache-2.0"
readme = "README.md"
categories = [
"api-bindings",
"data-structures",
"no-std",
"development-tools::ffi",
]
keywords = ["internet-computer", "types", "dfinity", "canister", "cdk"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]
repository = "https://github.com/dfinity/cdk-rs"
rust-version = "1.65.0"
[dependencies]
candid = "0.8"
ic0 = { path = "../ic0", version = "0.18.10" }
ic-cdk-macros = { path = "../ic-cdk-macros", version = "0.6.7" }
serde = "1.0.110"
serde_bytes = "0.11.7"
slotmap = { version = "1.0.6", optional = true }
[dev-dependencies]
rstest = "0.12.0"
[features]
transform-closure = ["dep:slotmap"]
[package.metadata.docs.rs]
all-features = true
default-target = "wasm32-unknown-unknown"
rustdoc-args = ["--cfg=docsrs"]