forked from dfinity/cdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 992 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[workspace]
members = [
"src/ic0",
"src/ic-cdk",
"src/ic-cdk-bindgen",
"src/ic-cdk-macros",
"src/ic-cdk-timers",
"library/ic-certified-map",
"library/ic-ledger-types",
"e2e-tests",
]
[workspace.package]
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
repository = "https://github.com/dfinity/cdk-rs"
# MSRV
# Avoid updating this field unless we use new Rust features
# Sync rust-version in following CI files:
# .github/workflows/ci.yml
# .github/workflows/examples.yml
rust-version = "1.65.0"
license = "Apache-2.0"
[profile.canister-release]
inherits = "release"
debug = false
panic = "abort"
lto = true
opt-level = 'z'
[workspace.dependencies]
ic0 = { path = "src/ic0", version = "0.18.11" }
ic-cdk = { path = "src/ic-cdk", version = "0.10" }
ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.4.0" }
candid = "0.9"
futures = "0.3"
hex = "0.4"
quote = "1"
serde = "1"
serde_bytes = "0.11"
sha2 = "0.10"
slotmap = "1"
syn = "1"