-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
65 lines (62 loc) · 1.54 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
members = [
"src/cli_airdrop",
"src/cli_cryptogram",
"src/cli_dmsg",
"src/ic_dmsg_minter",
"src/ic_message",
"src/ic_message_channel",
"src/ic_message_profile",
"src/ic_message_types",
"src/ic_name_identity",
"src/ic_panda_ai",
"src/ic_panda_infra",
"src/ic_panda_luckypool",
"src/lib_panda",
"src/x_auth",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
edition = "2021"
version = "2.9.4"
repository = "https://github.com/ldclabs/ic-panda"
keywords = ["canister", "icp", "panda"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
async-trait = "0.1"
bytes = "1"
base64 = "0.21"
candid = "0.10"
ciborium = "0.2"
log = "0.4"
serde = "1"
serde_bytes = "0.11"
serde_json = { version = "1", features = ["preserve_order"] }
structured-logger = "1"
tokio = { version = "1", features = ["full"] }
ed25519-dalek = "2"
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
sha3 = "0.10"
num-traits = "0.2"
ic-agent = "0.39"
ic-cdk = "0.17"
ic-cdk-timers = "0.11"
ic-stable-structures = "0.6"
icrc-ledger-types = "0.1"
ic_cose_types = "0.5"
ic-certification = "3.0"
ic-oss-types = "0.9"
ic-canister-sig-creation = "1.1"
getrandom = { version = "0.2", features = ["custom"] }
rand = { version = "0.8", features = ["getrandom"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "=4.5", features = ["derive"] }
ic-crypto-standalone-sig-verifier = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }