forked from ethereum/trin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 882 Bytes
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
[package]
name = "trin"
version = "0.1.0"
authors = ["Jacob Kaufmann <jacobkaufmann18@gmail.com>", "Jason Carver <ut96caarrs@snkmail.com>"]
edition = "2021"
rust-version = "1.58.0"
default-run = "trin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.14"
tokio = { version = "1.8.0", features = ["full"] }
tracing = "0.1.26"
tracing-subscriber = "0.2.18"
trin-core = { path = "trin-core" }
trin-history = { path = "trin-history" }
trin-state = { path = "trin-state" }
[dev-dependencies]
ethportal-peertest = { path = "ethportal-peertest" }
[workspace]
members = [
"trin-history",
"trin-state",
"trin-core",
"trin-cli",
"ethportal-peertest"
]
[patch.crates-io]
# Use temporaly discv5 version
discv5 = { git = "https://github.com/ogenev/discv5.git", branch = "public_kbucket_stable" }