-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ability to work in no-std (optionally with alloc) (#132)
By default, the `std` feature is enabled, but with disable-default-features, it can now be either no-std/no-alloc. This did involve a **breaking change** with the serialization traits, to allow no-alloc serialization. Serialize/Deserialize traits were sealed, and most functions were hidden Per [updated guidance][1], it is recommended to commit the Cargo.lock, even for libraries, so this removes it from the gitignore, and adds it. Fixes #131 [1]: https://blog.rust-lang.org/2023/08/29/committing-lockfiles.html
- Loading branch information
Showing
33 changed files
with
1,721 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
target | ||
Cargo.lock | ||
.DS_Store | ||
.idea |
Oops, something went wrong.