Skip to content

Commit

Permalink
Merge pull request #809 from plebhash/fix-release-lib
Browse files Browse the repository at this point in the history
fix release-libs
  • Loading branch information
plebhash committed Mar 22, 2024
2 parents db994da + 14e33f1 commit 2322781
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/release-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ jobs:
run: |
cd protocols/v2/binary-sv2/binary-sv2
cargo publish
- name: Publish crate binary_sv2
continue-on-error: true
run: |
cd protocols/v2/binary-sv2/binary-sv2
cargo publish
- name: Publish crate const_sv2
continue-on-error: true
run: |
Expand Down
4 changes: 2 additions & 2 deletions roles/jd-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "jd_client"
path = "src/lib/mod.rs"

[dependencies]
stratum-common = { path = "../../common" }
stratum-common = { version = "1.0.0", path = "../../common" }
async-channel = "1.5.1"
async-recursion = "0.3.2"
binary_sv2 = { version = "^1.0.0", path = "../../protocols/v2/binary-sv2/binary-sv2" }
Expand All @@ -23,7 +23,7 @@ roles_logic_sv2 = { version = "^1.0.0", path = "../../protocols/v2/roles-logic-s
serde = { version = "1.0.89", default-features = false, features = ["derive", "alloc"] }
futures = "0.3.25"
tokio = { version = "1", features = ["full"] }
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
error_handling = { version = "1.0.0", path = "../../utils/error-handling" }
Expand Down
8 changes: 4 additions & 4 deletions roles/jd-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ name = "jd_server"
path = "src/lib/mod.rs"

[dependencies]
stratum-common = { path = "../../common" }
stratum-common = { version = "1.0.0", path = "../../common" }
async-channel = "1.5.1"
binary_sv2 = { version = "^1.0.0", path = "../../protocols/v2/binary-sv2/binary-sv2" }
buffer_sv2 = { version = "^1.0.0", path = "../../utils/buffer" }
codec_sv2 = { version = "*", path = "../../protocols/v2/codec-sv2", features = ["noise_sv2"] }
codec_sv2 = { version = "1.0.0", path = "../../protocols/v2/codec-sv2", features = ["noise_sv2"] }
const_sv2 = { version = "^1.0.0", path = "../../protocols/v2/const-sv2" }
network_helpers = { version = "1.0.0", path = "../../utils/network-helpers", features = ["with_tokio"] }
noise_sv2 = { version = "*", path = "../../protocols/v2/noise-sv2" }
noise_sv2 = { version = "1.0.0", path = "../../protocols/v2/noise-sv2" }
rand = "0.8.4"
roles_logic_sv2 = { version = "^1.0.0", path = "../../protocols/v2/roles-logic-sv2" }
tokio = { version = "1", features = ["full"] }
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
tracing = { version = "0.1" }
tracing-subscriber = "0.3"
error_handling = { version = "1.0.0", path = "../../utils/error-handling" }
Expand Down
4 changes: 2 additions & 2 deletions roles/mining-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "mining_proxy_sv2"
path = "src/lib/mod.rs"

[dependencies]
stratum-common = { path = "../../common" }
stratum-common = { version = "1.0.0", path = "../../common" }
async-channel = "1.8.0"
async-recursion = "0.3.2"
binary_sv2 = { version = "^1.0.0", path = "../../protocols/v2/binary-sv2/binary-sv2" }
Expand All @@ -25,7 +25,7 @@ once_cell = "1.12.0"
roles_logic_sv2 = { version = "^1.0.0", path = "../../protocols/v2/roles-logic-sv2" }
serde = { version = "1.0.89", features = ["derive", "alloc"], default-features = false }
tokio = { version = "1", features = ["full"] }
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
tracing = {version = "0.1"}
tracing-subscriber = {version = "0.3"}
nohash-hasher = "0.2.0"
Expand Down
4 changes: 2 additions & 2 deletions roles/pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "pool_sv2"
path = "src/lib/mod.rs"

[dependencies]
stratum-common = { path = "../../common" }
stratum-common = { version = "1.0.0", path = "../../common" }
async-channel = "1.5.1"
binary_sv2 = { version = "^1.0.0", path = "../../protocols/v2/binary-sv2/binary-sv2" }
buffer_sv2 = { version = "^1.0.0", path = "../../utils/buffer" }
Expand All @@ -23,7 +23,7 @@ rand = "0.8.4"
roles_logic_sv2 = { version = "^1.0.0", path = "../../protocols/v2/roles-logic-sv2" }
serde = { version = "1.0.89", features = ["derive", "alloc"], default-features = false }
tokio = { version = "1", features = ["full"] }
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
tracing = { version = "0.1" }
tracing-subscriber = "0.3"
async-recursion = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions roles/translator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "translator_sv2"
path = "src/lib/mod.rs"

[dependencies]
stratum-common = { path = "../../common" }
stratum-common = { version = "1.0.0", path = "../../common" }
async-channel = "1.5.1"
async-recursion = "0.3.2"
async-std = { version = "1.12.0", features = ["attributes"] }
Expand All @@ -26,13 +26,13 @@ serde = { version = "1.0.89", default-features = false, features = ["derive", "a
serde_json = { version = "1.0.64", default-features = false, features = ["alloc"] }
futures = "0.3.25"
tokio = { version = "1", features = ["full"] }
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
v1 = { version = "^1.0.0", path = "../../protocols/v1", package="sv1_api" }
error_handling = { version = "1.0.0", path = "../../utils/error-handling" }
key-utils = { version = "^1.0.0", path = "../../utils/key-utils" }
tokio-util = { version = "*", features = ["codec"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
async-compat = "0.2.1"


Expand Down
2 changes: 1 addition & 1 deletion utils/bip32-key-derivation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ stratum-common = { version="1.0.0", path = "../../common", features=["bitcoin"]}
slip132 = "0.10"

[dev-dependencies]
toml = { version = "*", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }
toml = { version = "0.5.6", git = "https://github.com/diondokter/toml-rs", default-features = false, rev = "c4161aa" }

0 comments on commit 2322781

Please sign in to comment.