-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 828 Bytes
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
[workspace]
resolver = "2"
members = [
"src/backend/api",
"src/backend/impl",
"src/backend/external_canisters",
"src/backend/logs",
"src/backend/macros",
]
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
debug = false
[workspace.dependencies]
ic-cdk = "0.12"
ic-cdk-macros = "0.8"
ic-cdk-timers = "0.6"
ic-stable-structures = "0.6"
ic-nns-governance = { git = "https://github.com/dfinity/ic", tag = "release-2025-01-09_03-19-base" }
ic-nns-common = { git = "https://github.com/dfinity/ic", tag = "release-2025-01-09_03-19-base" }
candid = "0.10"
candid_parser = "0.1"
serde = "1.0"
uuid = "1.6"
serde_bytes = "0.11"
chrono = { version = "0.4", default-features = false, features = ["std"] }
base64 = "0.22"
mockall = "0.12"
rstest = "0.18"
async-std = { version = "1.5", features = ["attributes"] }