Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-09 | Version 1.1.1 | Richard Walters | |
Changes since 1.1.0: * Added rustfmt.toml and used it to format the code. * Added .gitignore. * Fixed new warnings/lints raised by latest toolchain. | |||
2020-10-28 | Version 1.1.0 | Richard Walters | |
* Added functions to remove parts of a URI and return them. | |||
2020-10-16 | Version 1.0.2 | Richard Walters | |
* Code in doc examples needs to be reachable through a "main" function, otherwise the tests silently fail to detect problems. * The example for `Uri::resolve` was calling `path_to_string` rather than `to_string`. | |||
2020-10-15 | Version 1.0.1 | Richard Walters | |
* Fixed bug in percent encoding of characters \x0 through \xF where they were encoded as "%0" through "%F" rather than "%00" through "%0F". | |||
2020-10-15 | Add exclude list for crate | Richard Walters | |
2020-10-14 | Preparation for publishing on crates.io | Richard Walters | |
* Rename crate to "rhymuri" since "uri" is taken; FeelsBadMan * Bump crate version to 1.0.0. * Add categories, keywords, and repository metadata. * Update README with links to crates.io and documentation. * Add license reference in README. | |||
2020-10-13 | Add description, license-file, and readme to Cargo.toml | Richard Walters | |
2020-10-12 | Replace lazy_static! with once_cell::sync::Lazy | Richard Walters | |
2020-10-09 | Use named_tuple! to simplify test vector declarations | Richard Walters | |
2020-10-09 | Use thiserror to implement Error/Display/From traits for us | Richard Walters | |
2020-10-07 | Finish initial port of library to Rust | Richard Walters | |
2020-10-06 | Work in progress porting implementation to Rust | Richard Walters | |
2020-10-05 | Use lower snake case for Rust crate names | Richard Walters | |
2020-09-27 | Work in progress porting test cases to Rust, implemented by uriparse | Richard Walters | |