-
Notifications
You must be signed in to change notification settings - Fork 17
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 cargo-fuzz fuzzer #29
Closed
Closed
Conversation
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
By explicitly implementing `deserialize_str` which calls `visit_str` instead of `visit_bytes`.
By explicitly implementing `deserialize_identifier` to delegate to `deserialize_str`.
Fix deserialization of nested tuple
Minor change to support rust version >= 1.40.0
Add test for ser/de of struct with vec of tuples (issue toby#17)
josecelano
added a commit
to torrust/torrust-serde-bencode-archive
that referenced
this pull request
Sep 25, 2023
a1597cc Add cargo-fuzz fuzzer (5225225) Pull request description: From: toby#29 By: [5225225](https://github.com/5225225) `This adds a https://github.com/rust-fuzz/cargo-fuzz fuzzer which I used to find toby#28` ACKs for top commit: josecelano: ACK a1597cc Tree-SHA512: 45c604038a0e48b3057612ff4a28ffce1f4985f94c8fc3807d08daff8e94f7f40173bb690296619f928075101d2712abd984ec27849d12621a72606113baa501
Hi @5225225, this was also added to https://github.com/torrust/torrust-serde-bencode. But to be honest I do not know what this is for yet. My plan is:
|
Hi @5225225, It's finally merged into this repo. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a https://github.com/rust-fuzz/cargo-fuzz fuzzer which I used to find #28