-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 1008 Bytes
/
Cargo.toml
File metadata and controls
44 lines (36 loc) · 1008 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
36
37
38
39
40
41
42
43
44
[package]
name = "backend_impl"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[features]
dev = []
[dependencies]
backend_api = { path = "../api" }
backend_macros = { path = "../macros" }
external_canisters = { path = "../external_canisters" }
ic-cdk.workspace = true
ic-cdk-macros.workspace = true
ic-cdk-timers.workspace = true
ic-stable-structures.workspace = true
ic-nns-governance.workspace = true
ic-nns-common.workspace = true
ic-http-certification = { git = "https://github.com/dfinity/response-verification", features = [
"serde",
] }
candid.workspace = true
candid_parser.workspace = true
serde.workspace = true
serde_cbor = "0.11"
uuid = { workspace = true, features = ["serde"] }
chrono.workspace = true
hex = "0.4"
lazy_static = "1.4"
base64.workspace = true
rand = { version = "0.8", default-features = false }
rand_chacha = { version = "0.3", default-features = false }
[dev-dependencies]
mockall.workspace = true
rstest.workspace = true
async-std.workspace = true