Skip to content

Commit 9969c9d

Browse files
committed
Merge #379: Specify version of dependencies instead of path
dfa65fb Specify version of dependencies instead of path (Tobin C. Harding) Pull request description: I just tried to publish `corepc-client 0.10.0` and got an error from `cargo`. error: all dependencies must have a version specified when publishing. We recently switched to using `path` instead of versions, seems like this was wrong. ACKs for top commit: jamillambert: ACK dfa65fb Tree-SHA512: 036af88049ccd9ac2e51de9145e2eb5f90c9168f5f2eabf877c501936a43ea0aba13c4e7837d8f982895f76b23542cf1b21a438c9aefd316b27780467c548483
2 parents 0a146be + dfa65fb commit 9969c9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ bitcoin = { version = "0.32.0", default-features = false, features = ["std", "se
2525
log = "0.4"
2626
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2727
serde_json = { version = "1.0.117" }
28-
types = { package = "corepc-types", path = "../types", default-features = false, features = ["std"] }
28+
types = { package = "corepc-types", version = "0.10.0", path = "../types", default-features = false, features = ["std"] }
2929

30-
jsonrpc = { path = "../jsonrpc", features = ["minreq_http"], optional = true }
30+
jsonrpc = { version = "0.18.0", path = "../jsonrpc", features = ["minreq_http"], optional = true }
3131

3232
[dev-dependencies]

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = ["tests", "contrib"]
1414

1515
[dependencies]
1616
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }
17-
corepc-client = { path = "../client", features = ["client-sync"] }
17+
corepc-client = { version = "0.10.0", path = "../client", features = ["client-sync"] }
1818
log = { version = "0.4", default-features = false }
1919
serde_json = { version = "1.0.117", default-features = false }
2020
tempfile = { version = "3", default-features = false }

0 commit comments

Comments
 (0)