forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 898 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
[package]
name = "ic-cdk-macros"
version = "0.6.10" # no need to sync with ic-cdk
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Canister Developer Kit macros."
homepage = "https://docs.rs/ic-cdk-macros"
documentation = "https://docs.rs/ic-cdk-macros"
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"
[lib]
proc-macro = true
[dependencies]
candid = "0.8.0"
syn = { version = "1.0.58", features = ["fold", "full"] }
quote = "1.0"
proc-macro2 = "1.0"
serde_tokenstream = "0.1.0"
serde = "1.0.111"
[dev-dependencies]
trybuild = "1.0"
ic-cdk = { path = "../ic-cdk", version = "0.7" }