forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 908 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
31
32
[package]
name = "ic0"
version = "0.18.11"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true
description = "Internet Computer System API Binding."
readme = "README.md"
categories = ["api-bindings", "development-tools::ffi"]
keywords = ["internet-computer", "types", "dfinity", "canister", "cdk"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]
[dev-dependencies]
quote.workspace = true
syn = { workspace = true, features = ["parsing", "full", "extra-traits"] }
[features]
# This feature is not additive as normal crate features.
# Enable it may cause other dependent projects malfunctioning.
# It is only to be used by `ic-cdk`.
wasi = []
# This is not a real example but a utility for auto-generating ic0.rs
[[example]]
name = "ic0build"
path = "util/ic0build.rs"
[[example]]
name = "work"
path = "util/work.rs"