-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "alloc" feature #71
Conversation
89ce404
to
b6a963e
Compare
After reading through #45 I made some changes, primarily: make "std" enable "alloc" |
b6a963e
to
04b71a7
Compare
Might need some administration changes, this PR changes CI a bit and its now not running. Not exactly sure what needs doing to resolve. |
04b71a7
to
3b57a4e
Compare
Changes in force push:
|
3b57a4e
to
e15eb28
Compare
Rebase only, no other changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put my work on top of this successfully, so I would like to see this merge!
If anyone is concerned they not enough works yet without alloc, that is what the remainder in my PR focuses on.
e15eb28
to
2cd7837
Compare
Rebased and improved test script. |
Gentle bump, can I get a review please crew. |
2cd7837
to
f18b111
Compare
Needs rebase. |
f18b111
to
4ab480c
Compare
Rebase only, no other changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 4ab480c
Needs rebase again. |
In preparation for adding a no-allocator embedded test crate; move the `embedded` crate (which uses a global allocator) to a subdirectory called `with-allocator`.
We would like users to be able to use parts of this library in a `no_std` environment without an allocator. To achieve this add an "alloc" feature and feature gate any code that requires allocation behind "alloc"/"std". Update the CI test job to run the test with each feature on its own.
In order to test that `bech32` can be built in a `no_std` environment without an allocator add a crate `no-allocator` to the `embedded` directory. Add a CI job to build the crate.
We now have two features that require testing in various combinations, add a `contrib/test.sh` script to do the testing and use it in the `Test` CI job. Add names to other steps in the job to improve clarity.
4ab480c
to
85caa28
Compare
Rebase only, no other changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 85caa28
7873c85 Rework GitHub actions (Tobin C. Harding) 433699f Enable alloc feature in with-allocator (Tobin C. Harding) Pull request description: Recently in #71 I introduced a bucket load of bugs, in CI and in the `with-allocator` crate (which was not being run correctly in CI). - Patch 1 enables the "alloc" feature in the `with-allocator` crate. - Patch 2 totally overhauls the github actions ACKs for top commit: apoelstra: ACK 7873c85 Tree-SHA512: ab8fbfd2dab315338c510b8622317d343186e62b78f5237ce8b4aceefc10963372c6238a114e244d03e0fe8fad2d4362c310be137c2af4ea057fb7020b46edf3
We would like users to be able to use parts of this library in a
no_std
environment without an allocator. To achieve this add an "alloc" feature and feature gate any code that requires allocation behind.To test the new feature gating works, and catch regressions, add a crate that uses
bech32
as a dependency with no default features and forces ano_std
build. (Does not test any code just imports the lib to verify it builds.)Patch 3 can be moved before patch 2 to verify that the crate does not currently build without an allocator.
Patch 4 adds a minimal
contrib/test.sh
script.