Loïc Lecrenier

Results 69 comments of Loïc Lecrenier

Hi! Thanks for including a link to the code. I am trying to reproduce it but found this compile-time error: ``` error: couldn't read /opt/dev_env/conduit-fuzzer/config.toml: No such file or directory...

Thanks, I can compile the code and reproduce it now :) I have added an option to `cargo-fuzzcheck` to enable AddressSanitizer, in the hopes that it would catch the error...

No worries :) It is true that it is probably a bit too early to fuzz a large crate with lots of strings such as `conduit`/`ruma`, especially when the fuzz...

It's possible, but it is pushing of the limits of what is currently possible, and I don't know what the quality of the resulting mutators will be (maybe they're fine,...

oops! thanks, I'll fix it :) the book isn't open source, I suppose I should publish it here someday

I agree :) I don't have any time to work on this at the moment, but I will starting beginning of July. If you don't want to wait a couple...

Quick update to say that I am currently working on a regex-based string mutator. The goal is to be able to write: ```rust let string_mutator = regex_based_mutator_or_sth!("(a|b)+[0-9]?"); // impl Mutator...

Thanks :) I have pushed a lot of commits that I didn't realise were not on Github. Also, I have the first draft of a grammar-based string mutator. I have...

Hi! It is unfortunately not possible with fuzzcheck 0.9. It used to be possible to write something like: ```rust #[derive(.., DefaultMutator)] struct AuthenticationData { #[field_mutator(GrammarBasedStringMutator = { grammar_based_string_mutator(regex("[a-z0-9]+")) })] session:...

ah, I got rid of all those trait requirements recently, but forgot those changes didn't make it to fuzzcheck 0.9. I'll publish a quick update next week so that you...