forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 895 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-cdk-timers"
version = "0.1.2"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Timers library for the Rust CDK."
homepage = "https://docs.rs/ic-cdk"
documentation = "https://docs.rs/ic-cdk-timers"
license = "Apache-2.0"
readme = "README.md"
categories = ["api-bindings", "data-structures", "no-std", "development-tools::ffi"]
keywords = ["internet-computer", "dfinity", "canister", "cdk"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]
repository = "https://github.com/dfinity/cdk-rs"
rust-version = "1.60.0"
[dependencies]
ic-cdk = { path = "../../src/ic-cdk", version = "0.7" }
serde = "1.0.110"
serde_bytes = "0.11.7"
ic0 = { path = "../ic0", version = "0.18.9" }
slotmap = { version = "1.0.6" }
futures = { version = "0.3.25" }
[package.metadata.docs.rs]
default-target = "wasm32-unknown-unknown"
rustc-args = ["--cfg=docsrs"]