Skip to content

Commit

Permalink
move bitcoinsv dependency to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Danconnolly committed Feb 8, 2025
1 parent a0fe627 commit 6282b88
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 108 deletions.
103 changes: 1 addition & 102 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ members = [
"client",
"integration_test",
]

[workspace.dependencies]
bitcoinsv = "0.2.7"
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "src/lib.rs"

[dependencies]
async-trait = "0.1.75"
bitcoinsv = "0.2.7"
bitcoinsv = { workspace = true }
bitcoinsv-rpc-json = { version = "1.0.2" }
hex = "0.4.3"
jsonrpc = { version = "0.16.0", features = ["minreq_http"]}
Expand Down
6 changes: 2 additions & 4 deletions integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ authors = ["Daniel Connolly <[email protected]>"]
edition = "2021"

[dependencies]
bitcoinsv = { workspace = true }
bitcoinsv-rpc = { path = "../client" }
lazy_static = "1.4.0"
log = "0.4"
env_logger = "0.10.1"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
bitcoinsv = "0.2.7"

2 changes: 1 addition & 1 deletion json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "bitcoinsv_rpc_json"
path = "src/lib.rs"

[dependencies]
bitcoinsv = "0.2.7"
bitcoinsv = { workspace = true }
hex = "0.4.3"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
Expand Down

0 comments on commit 6282b88

Please sign in to comment.