Skip to content
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

Merged
merged 4 commits into from
Mar 1, 2023
Merged

Conversation

tcharding
Copy link
Member

@tcharding tcharding commented Jul 28, 2022

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 a no_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.

@tcharding
Copy link
Member Author

After reading through #45 I made some changes, primarily: make "std" enable "alloc"

@tcharding tcharding force-pushed the 07-28-alloc-feature branch from b6a963e to 04b71a7 Compare July 29, 2022 01:51
@tcharding
Copy link
Member Author

Might need some administration changes, this PR changes CI a bit and its now not running. Not exactly sure what needs doing to resolve.

@tcharding tcharding force-pushed the 07-28-alloc-feature branch from 04b71a7 to 3b57a4e Compare August 10, 2022 00:56
@tcharding
Copy link
Member Author

Changes in force push:

  • Added an initial patch to remove extern crate core instead of doing it within later patch
  • Rebased and fixed the new code to work with new "alloc" feature

@tcharding tcharding force-pushed the 07-28-alloc-feature branch from 3b57a4e to e15eb28 Compare August 25, 2022 05:22
@tcharding
Copy link
Member Author

Rebase only, no other changes.

Copy link
Contributor

@Ericson2314 Ericson2314 left a 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.

@tcharding
Copy link
Member Author

Rebased and improved test script.

@tcharding
Copy link
Member Author

Gentle bump, can I get a review please crew.

@tcharding tcharding mentioned this pull request Feb 27, 2023
@apoelstra
Copy link
Member

Needs rebase.

@tcharding
Copy link
Member Author

Rebase only, no other changes.

Copy link
Member

@apoelstra apoelstra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK 4ab480c

@apoelstra
Copy link
Member

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.
@tcharding
Copy link
Member Author

Rebase only, no other changes.

Copy link
Member

@apoelstra apoelstra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK 85caa28

@apoelstra apoelstra merged commit e26863a into rust-bitcoin:master Mar 1, 2023
@apoelstra apoelstra mentioned this pull request Mar 1, 2023
@tcharding tcharding mentioned this pull request Mar 1, 2023
@tcharding tcharding deleted the 07-28-alloc-feature branch March 1, 2023 03:01
apoelstra added a commit that referenced this pull request Mar 1, 2023
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants