forked from dfinity/agent-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 978 Bytes
/
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
[workspace]
members = [
"ic-agent",
"icx-cert",
"ic-identity-hsm",
"ic-utils",
"ic-transport-types",
"icx",
"ref-tests",
]
[workspace.package]
version = "0.29.0"
authors = ["DFINITY Stiftung <[email protected]>"]
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.70.0"
license = "Apache-2.0"
[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.29.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.29.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.29.0" }
ic-certification = "1.2.0"
candid = "0.9.5"
clap = "4.4.3"
hex = "0.4.3"
leb128 = "0.2.5"
ring = "0.16.20"
serde = "1.0.162"
serde_bytes = "0.11.9"
serde_cbor = "0.11.2"
serde_json = "1.0.96"
serde_repr = "0.1.12"
sha2 = "0.10.6"
thiserror = "1.0.40"
time = "0.3"
tokio = "1.28.0"