Vagelis Prokopiou
Vagelis Prokopiou
### Thanks for contributing to chrono! - [ ] Have you added yourself and the change to the [changelog]? (Don't worry about adding the PR number) - [x] If this...
Hello guys. I have found some inputs that create panics to the `DateTime::parse_from_str` method. The program is the follwoing: ``` fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap();...
The example in the README is fully functional as is, but there are some warnings, at least in the JetBrains Clion IDE. The changes in this PR fix all the...
The following fail: ``` sd '' '' file.txt sd -s '' '' file.txt ``` The respective `sed` command works: ``` sed 's|||g' file.txt ``` Platform: Windows sd version: 0.7.6 Executed...
With PR #77 a note about dashes in the crate name was added in the docs. The note was of course an essential addition. I propose going a step further...
Since `reqwest::ClientBuilder` is part of the public API through `httpc_test::new_client_with_reqwest` it is best to re-export it, so that the end user does not have to also require the `reqwest` crate...