forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.07 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
[package]
name = "ic-cdk"
version = "0.6.8"
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.60.0"
[dependencies]
candid = "0.8"
cfg-if = "1.0.0"
serde = "1.0.110"
serde_bytes = "0.11.7"
ic0 = { path = "../ic0", version = "0.18.4" }
ic-cdk-macros = { path = "../ic-cdk-macros", version = "0.6.7" }
slotmap = { version = "1.0.6", optional = true }
futures = { version = "0.3.25", optional = true }
[features]
timers = ["dep:slotmap", "dep:futures"]
[dev-dependencies]
rstest = "0.12.0"
[package.metadata.docs.rs]
all-features = true
default-target = "wasm32-unknown-unknown"
rustc-args = ["--cfg=docsrs"]