Skip to content

Commit 7d94601

Browse files
committed
fix: add internal packages to workspace dependencies for git pulls
1 parent fd1211c commit 7d94601

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ edition = "2024"
1010
rust-version = "1.85.0"
1111

1212
[workspace.dependencies]
13+
# Internal workspace packages
14+
filecoin-f3-blssig = { path = "./blssig", version = "0.1.0" }
15+
filecoin-f3-certs = { path = "./certs", version = "0.1.0" }
16+
filecoin-f3-gpbft = { path = "./gpbft", version = "0.1.0" }
17+
filecoin-f3-rpc = { path = "./rpc", version = "0.1.0" }
18+
1319
ahash = "0.8"
1420
anyhow = "1"
1521
base32 = "0.5.1"

lightclient/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ license.workspace = true
88
edition.workspace = true
99

1010
[dependencies]
11-
filecoin-f3-blssig = { path = "../blssig", version = "0.1.0" }
12-
filecoin-f3-certs = { path = "../certs", version = "0.1.0" }
13-
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0" }
14-
filecoin-f3-rpc = { path = "../rpc", version = "0.1.0" }
11+
filecoin-f3-blssig = { workspace = true }
12+
filecoin-f3-certs = { workspace = true }
13+
filecoin-f3-gpbft = { workspace = true }
14+
filecoin-f3-rpc = { workspace = true }
1515

1616
anyhow.workspace = true
1717
base64 = { workspace = true }

0 commit comments

Comments
 (0)