v0.3.0
What's Changed
- Add timeout in #4
A timeout can now be specified like:
let mut jarm_scan = Jarm::new(host, port);
jarm_scan.timeout = Duration::from_secs(2);
let result = match jarm_scan.hash()
It'll limit the time to wait for response for each of the 10 requests sent to the service scanned.
This is a breaking change as it adds a new public field to the Jarm
structure (see rust semver). To prevent future similar inconvenience and as the structure is not supposed to be built manually, the non_exhaustive
attribute have been apposed on it.
Full Changelog: v0.2.1...v0.3.0