Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

NAlgebra replaces custom grid #33

Merged
merged 35 commits into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a85321d
Simplify `Debug` and `RuntimeDebug`
fmiguelgarcia Jun 7, 2023
a53b607
Clean some deps
fmiguelgarcia Jun 8, 2023
ecbd06b
Remove asserts from production code
fmiguelgarcia Jun 8, 2023
48566c6
CodeReview: Keep warning for future
fmiguelgarcia Jun 13, 2023
5c22609
Replace `Grid` by `NAlgebra`
fmiguelgarcia Jun 20, 2023
2d7b441
Full replacement All UT pass
fmiguelgarcia Jun 23, 2023
2672485
Fix example
fmiguelgarcia Jun 23, 2023
7c86c34
Use keccak256.
0xSasaPrsic Jun 20, 2023
a9d0f17
Merge pull request #34 from availproject/feat/use_keccak256
0xSasaPrsic Jun 26, 2023
98402aa
Add benchmark on reconstruction
fmiguelgarcia Jun 26, 2023
d83f039
Add benchmark
fmiguelgarcia Jun 26, 2023
cc358fc
Add benchmark
fmiguelgarcia Jun 26, 2023
35fcf50
Reduce memory copies
fmiguelgarcia Jun 28, 2023
37d6c25
Some improvements
fmiguelgarcia Jun 30, 2023
d0074bf
Refactor `avail-core` add `runtime` feature
fmiguelgarcia Jul 5, 2023
a0679ee
MerkleProof under 'runtime' feature
fmiguelgarcia Jul 5, 2023
890b8b4
DataLookup simplification
fmiguelgarcia Jul 6, 2023
a3b994c
Add UT for `DataLookup`'s serde
fmiguelgarcia Jul 6, 2023
efc3230
Remove `AppIndex` & enforce `AppId`
fmiguelgarcia Jul 6, 2023
3ad206e
Add `CompactDataLookup`
fmiguelgarcia Jul 6, 2023
8f8dc28
Moving `nomad` code
fmiguelgarcia Jul 10, 2023
442cb89
Improve `no-std` segragation
fmiguelgarcia Jul 10, 2023
e9a6d9c
Dedup `Index` related stuff
fmiguelgarcia Jul 10, 2023
3d456d7
Clean some deps in `nomad`
fmiguelgarcia Jul 10, 2023
3cfa635
Enable CI Benchmarks
fmiguelgarcia Jul 10, 2023
5b91d32
Add temporary Will's branch
fmiguelgarcia Jul 10, 2023
a176b53
Merge branch 'main' into miguel/nalgebra_dep
fmiguelgarcia Jul 10, 2023
d678517
Fix check fmt on CI
fmiguelgarcia Jul 10, 2023
4e23332
Fix clippy on CI
fmiguelgarcia Jul 10, 2023
486d9ce
Fix check fmt on CI
fmiguelgarcia Jul 10, 2023
4193fda
Remove `Criterion` on CI
fmiguelgarcia Jul 10, 2023
30f57f7
Bump up versions
fmiguelgarcia Jul 10, 2023
886c6f2
Use `collect_into_vec`
fmiguelgarcia Jul 10, 2023
2f86996
Use `Dimension::weight/height()`
fmiguelgarcia Jul 11, 2023
66a26e3
Merge branch 'will/grid-refactor' into miguel/nalgebra_dep
fmiguelgarcia Jul 11, 2023
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
10 changes: 9 additions & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ on:
branches:
- main
- develop
- will/grid-refactor
pull_request:
branches:
- main
- develop
- will/grid-refactor

jobs:
build_and_test:
Expand Down Expand Up @@ -45,11 +47,17 @@ jobs:
command: fmt
args: --check

- name: Check Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --features "avail-core/runtime"

- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
args: --workspace --features "avail-core/runtime"
env:
RUSTFLAGS: "-C instrument-coverage"
LLVM_PROFILE_FILE: "profile-%p-%m.profraw"
Expand Down
Loading