Skip to content

Commit 6089378

Browse files
committed
add: dependencies and workspace members
1 parent 4537842 commit 6089378

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

Cargo.lock

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
members = [ "alloy-helper","reakula", "safe-arith", "specs"]
2+
members = [ "alloy-helper", "helper", "reakula", "safe-arith", "specs"]
33
default-members = ["reakula"]
44
resolver = "2"
55

@@ -14,14 +14,18 @@ rust-version = "1.81"
1414
[workspace.dependencies]
1515
tokio = { version = "1.41.1", features = ["full"] }
1616
eyre = { version = "0.6.12" }
17+
byteorder = { version = "1.5.0" }
18+
serde = { version = "1.0.216", features = ["derive"] }
19+
bytes = { version = "1.9.0", features = ["serde"] }
20+
typenum = { version = "=1.17.0" }
21+
1722
sszb = { package = "sszb", git = "https://github.com/ghiliweld/sszb.git" }
1823
sszb_derive = { package = "sszb_derive", git = "https://github.com/ghiliweld/sszb.git" }
24+
25+
specs = { path = "specs" }
1926
safe_arith = { path = "safe-arith" }
20-
alloy-primitives = { version = "0.8.15" }
21-
serde = { version = "1.0.216", features = ["derive"] }
22-
bytes = { version = "1.9.0", features = ["serde"] }
2327
alloy_helper = { path = "alloy-helper" }
24-
byteorder = { version = "1.5.0" }
28+
2529

2630
[profile.dev]
2731
opt-level = 3

0 commit comments

Comments
 (0)