-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 852 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
[package]
name = "idempotent-proxy-canister"
description = "A ICP canister Make Idempotent Proxy service on-chain."
repository = "https://github.com/ldclabs/idempotent-proxy/tree/main/src/idempotent-proxy-canister"
publish = false
version.workspace = true
edition.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
http = { workspace = true }
base64 = { workspace = true }
ciborium = { workspace = true }
futures = { workspace = true }
serde = { workspace = true }
serde_bytes = { workspace = true }
candid = "0.10"
ic-cdk = "0.16"
ic-cdk-timers = "0.10"
ic-stable-structures = "0.6"
ic_cose_types = "0.3"
getrandom = { version = "0.2", features = ["custom"] }