Implementation of the dbgp protocol
This intends to comply with the protocol available on date: 2017-04-04 on this website
The protocol is also available in this git repository
To run fuzzing on this crate install cargo-fuzz
and run
cargo fuzz run -j4 fuzz_packet_parse -- -max_len=256
- Quickcheck roundtrip tests for packet (de)serialization
- We should consider changing to
Cow
instead ofString
dbgp is licensed under GPL General Public License 2.0 only with a Linking exception
This means that you can link it with your program even if its license is not GPL
Read LICENSE for more information.