-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 928 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
43
44
45
46
47
48
49
[workspace]
members = [
"bin/trust",
"crates/ecies",
"crates/rlp",
]
default-members = ["bin/trust"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
rust-version = "1.70"
license = "MIT"
repository = "https://github.com/udsamani/trust"
exclude = [".github/"]
[workspace.dependencies]
## Trust
trust-rlp = { path = "./crates/rlp" }
## Tokio
tokio-stream = "0.1.11"
tokio = { version = "1.21", default-features = false }
tokio-util = { version = "0.7.4", features = ["codec"] }
## Async
futures = "0.3.26"
futures-util = "0.3.25"
## Crypto
secp256k1 = { version = "0.27.0", default-features = false, features = [
"global-context",
"rand-std",
"recovery",
] }
ethereum-types = "0.14.1"
## Miscellaneous
thiserror = "1.0"
rand = "0.8.5"
bytes = "1.5.0"
fixed-hash = { version = "0.8", default-features = false, features = ["rustc-hex"] }
hex-literal = "0.4"
## Config
toml = "0.7"