-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (58 loc) · 1.91 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
[workspace]
resolver = "2"
members = [
"crates/dscvr-candid-generator",
"crates/dscvr-canister-agent",
"crates/dscvr-canister-config",
"crates/dscvr-canister-exports",
"crates/dscvr-interface",
"crates/dscvr-telemetry-util",
"crates/dscvr-tracing-util",
"crates/ic-canister-io",
"crates/ic-canister-logger",
"crates/ic-canister-stable-storage",
"crates/ic-identity-util",
"crates/ic-ingress-validator-util",
"crates/ic-rc-principal",
"crates/instrumented-error",
]
[workspace.dependencies]
async-std = "1.12.0"
async-trait = "0.1"
# Note: Need to leave ring at 0.16 for compatibility with ic-agent
bincode = "1.3"
candid = { git = "https://github.com/dscvr-one/candid.git", rev = "dscvr-2024-04-11-2" }
candid_parser = { git = "https://github.com/dscvr-one/candid.git", rev = "dscvr-2024-04-11-2" }
convert_case = "0.6"
deepsize = { git = "https://github.com/dscvr-one/deepsize.git", tag = "dscvr-2024-04-11-2", features = [
"candid",
"serde_bytes",
"derive",
"std",
] }
derive_more = "0.99"
enum-iterator = "2.1.0"
flate2 = "1.0"
futures = "0.3.25"
ic-agent = { version = "0.39.1", features = ["pem", "ring"] }
ic-cdk = "0.17.0"
lazy_static = "1.4"
num-traits = "0.2.15"
reqwest = { version = "~0.12.9", features = ["blocking", "json", "rustls-tls-webpki-roots", "stream" ] }
ring = { version = "0.17", features = ["std"] }
rmp-serde = "1.1"
rustc-hash = { version = "2.1" }
serde = "1.0"
serde_bytes = "0.11"
serde_json = "1.0"
thiserror = "~2.0.6"
time = "0.3.17"
tokio = "1.0"
tokio-retry = "0.3"
tracing = "0.1"
tracing-error = { version = "0.2", features = ["traced-error"] }
tracing-stackdriver = "0.10.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[patch.crates-io]
candid = { git = "https://github.com/dscvr-one/candid.git", rev = "dscvr-2024-04-11-2" }
candid_parser = { git = "https://github.com/dscvr-one/candid.git", rev = "dscvr-2024-04-11-2" }