Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/coverage-protocols.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ jobs:
file: ./protocols/target/tarpaulin-reports/cobertura.xml
flags: protocols
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload binary_codec_sv2-coverage to codecov.io
uses: codecov/codecov-action@v4
with:
directory: ./protocols/target/tarpaulin-reports/codec-coverage
file: ./protocols/target/tarpaulin-reports/codec-coverage/cobertura.xml
flags: binary_codec_sv2-coverage
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload binary_sv2-coverage to codecov.io
uses: codecov/codecov-action@v4
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ jobs:
cd protocols/v2/binary-sv2/derive_codec
cargo doc

- name: Rust Docs crate binary_sv2 codec
run: |
cd protocols/v2/binary-sv2/codec
cargo doc --features with_buffer_pool

- name: Rust Docs crate binary_sv2
run: |
cd protocols/v2/binary-sv2
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/release-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ jobs:
run: |
./scripts/release-libs.sh protocols/v2/noise-sv2

# binary_sv2 (depends on buffer_sv2)
- name: Publish crate binary_sv2 codec
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/codec

- name: Publish crate binary_sv2 derive_codec
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/derive_codec
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/semver-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ jobs:
working-directory: utils/buffer
run: cargo semver-checks

- name: Run semver checks for protocols/v2/binary-sv2/codec
working-directory: protocols/v2/binary-sv2/codec
run: cargo semver-checks

- name: Run semver checks for protocols/v2/binary-sv2
working-directory: protocols/v2/binary-sv2
run: cargo semver-checks
Expand Down
2 changes: 1 addition & 1 deletion examples/ping-pong-encrypted/src/messages.rs
Comment thread
GitGab19 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::error::Error;
use stratum_apps::stratum_core::binary_sv2::{
self as binary_sv2, binary_codec_sv2,
self as binary_sv2,
decodable::{DecodableField, FieldMarker},
Deserialize, Serialize,
};
Expand Down
2 changes: 1 addition & 1 deletion examples/ping-pong/src/messages.rs
Comment thread
GitGab19 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::error::Error;
use stratum_apps::stratum_core::binary_sv2::{binary_codec_sv2, Deserialize, Serialize};
use stratum_apps::stratum_core::binary_sv2::{self, Deserialize, Serialize};

use rand::Rng;

Expand Down
1 change: 0 additions & 1 deletion protocols/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resolver="2"

members = [
"v1",
"v2/binary-sv2/codec",
"v2/binary-sv2/derive_codec",
"v2/binary-sv2",
"v2/noise-sv2",
Expand Down
Loading
Loading