Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9c2f3a1
seals: impl Eq and Hash for SealWitness
dr-orlovsky May 15, 2025
ec48808
ci: fix WASM build
dr-orlovsky May 16, 2025
0fab906
chore: fix clippy lints new in rustc 0.87.0
dr-orlovsky May 16, 2025
899380b
doc: write all doc comments for the single_use_seals crate
dr-orlovsky May 16, 2025
da0abd0
doc: write all doc comments for the commit_verify crate
dr-orlovsky May 16, 2025
fa8f203
chore: update the licence plate
dr-orlovsky May 16, 2025
6fd32b0
ci: modernize github actions
dr-orlovsky May 16, 2025
908838e
seals: revert renaming the method `SingleUseSeal::is_included`
dr-orlovsky May 16, 2025
85117ab
seals: provide Default impl for NoPubWitness when Seal is not Default
dr-orlovsky May 16, 2025
35d6c00
seals: provide strict encoding impl for NoPubWitness
dr-orlovsky May 16, 2025
34c0a20
test (seals): add happy path testing
dr-orlovsky May 16, 2025
220568a
test (seal): complete test coverage with failing cases
dr-orlovsky May 16, 2025
7a2eba4
test (seals): cover yet uncovered fragments
dr-orlovsky May 16, 2025
042c484
test: skip coverage of the test code itself
dr-orlovsky May 16, 2025
d9590c4
ci: upgrade rand version, while fixing wasm builds
dr-orlovsky May 16, 2025
88d9e0c
ci: fix coverage feature
dr-orlovsky May 16, 2025
a4cc4a1
ci: more wasm and other fixes
dr-orlovsky May 16, 2025
1d9619d
chore: add vesper feature
dr-orlovsky May 16, 2025
fdac879
test: complete coverage of id module
dr-orlovsky May 16, 2025
568d006
comits: fix ReservedBytes serde deserialization
dr-orlovsky May 18, 2025
2357928
chore: update amplify and strict types
dr-orlovsky May 19, 2025
77e36c5
Merge pull request #195 from LNP-BP/revision
dr-orlovsky May 19, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand All @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
feature: [ derive, rand, stl, serde ]
feature: [ derive, rand, stl, vesper, serde ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -38,3 +38,8 @@ jobs:
components: rust-docs
- name: Formatting
run: cargo +nightly doc --workspace --all-features
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand All @@ -27,3 +27,13 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Test ${{matrix.os}}
run: cargo test --workspace --all-features --no-fail-fast -- --include-ignored
wasm-testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: jetli/[email protected]
- name: Add wasm32 target
run: rustup target add wasm32-unknown-unknown
- name: Test in headless Chrome
run: RUSTFLAGS='--cfg getrandom_backend="wasm_js"' wasm-pack test --headless --chrome
Loading