Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
22388o committed Jun 28, 2024
1 parent e0610a7 commit 0a6cf0d
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ lighning = "0.0.123"
name = "mining"
path = "src/mining/lib.rs"

name = "on-chain"
path = "src/on-chain/lib.rs"

name "data"
path = "src/data/lib.rs"

[bin]

name = "hashpoold"
Expand Down
9 changes: 9 additions & 0 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "hashpoold"
version = "1.0.10-beta"
edition = "2021"

[dependencies]
mining = { path = "../mining" }
on-chain = { path = "../on-chain" }
data = { path = "../data" }
5 changes: 5 additions & 0 deletions src/data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ edition = "2018"

[dependencies]
bitcoin = "0.32.0"

[lib]

name = "data"
path = "src/data/lib.rs
7 changes: 7 additions & 0 deletions src/on-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ edition = "2018"
[dependencies]
bdk = "1.0.0-alpha.13"
bitcoin = "0.32.0"

[lib]
name = "on-chain"
path = "src/on-chain/lib.rs"

name = "data"
path = "src/data/lib.rs
2 changes: 2 additions & 0 deletions workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
members = [
"mining",
"on-chain",
"data",
"bin"
]

0 comments on commit 0a6cf0d

Please sign in to comment.