forked from dfinity/agent-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (54 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
58 lines (54 loc) · 1.41 KB
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
[workspace]
resolver = "2"
members = [
"ic-agent",
"icx-cert",
"ic-identity-hsm",
"ic-utils",
"ic-utils-bindgen",
"ic-transport-types",
"icx",
"ref-tests",
"ic-utils-bindgen-tests",
]
[workspace.package]
version = "0.45.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
# MSRV
# Avoid updating this field unless we use new Rust features
# Sync rust-version in rust-toolchain.toml
rust-version = "1.85.0"
license = "Apache-2.0"
[workspace.lints.clippy]
needless_lifetimes = "allow"
[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.45.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.45.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.45.0" }
ref-tests = { path = "ref-tests" }
ic-certification = "3"
anyhow = { version = "1.0", features = ["backtrace"] }
candid = "0.10.10"
candid_parser = "0.2.2"
clap = "4.5.21"
futures-util = "0.3.31"
hex = "0.4.3"
ic-ed25519 = "0.5"
k256 = "0.13.4"
leb128 = "0.2.5"
pocket-ic = "10.0.0"
p256 = "0.13.2"
rand = "0.8.5"
reqwest = { version = "0.12", default-features = false }
serde = "1.0.215"
serde_bytes = "0.11.15"
serde_cbor = "0.11.2"
serde_json = "1.0.133"
serde_repr = "0.1.19"
sha2 = "0.10.8"
thiserror = "2.0.3"
time = "0.3"
tokio = { version = "1.41.1", default-features = false }
ic-management-canister-types = "0.5.0"