aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2021-12-05remove C++ implementationMartin Fischer
2021-03-29Version 1.3.1Richard Walters
* Suppress more lints caused by `named_tuple`. * Remove unnecessary `Result` from infallible functions.
2021-01-16Version 1.3.0Richard Walters
Changes since 1.2.0: * Disable `clippy::ref_option_ref` now triggered by `named_tuple` macro. * Add implementations of `TryFrom` for `&str` and `String`.
2020-12-21Version 1.2.0Richard Walters
Changes since 1.2.0: * Fixed compiler warning about not using `split_prefix`. * Use newer `once_cell` (1.4 -> 1.5)
2020-11-09Version 1.1.1Richard 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-28Version 1.1.0Richard Walters
* Added functions to remove parts of a URI and return them.
2020-10-16Version 1.0.2Richard 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-15Version 1.0.1Richard 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-15Add exclude list for crateRichard Walters
2020-10-14Preparation for publishing on crates.ioRichard 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-13Add description, license-file, and readme to Cargo.tomlRichard Walters
2020-10-12Replace lazy_static! with once_cell::sync::LazyRichard Walters
2020-10-09Use named_tuple! to simplify test vector declarationsRichard Walters
2020-10-09Use thiserror to implement Error/Display/From traits for usRichard Walters
2020-10-07Finish initial port of library to RustRichard Walters
2020-10-06Work in progress porting implementation to RustRichard Walters
2020-10-05Use lower snake case for Rust crate namesRichard Walters
2020-09-27Work in progress porting test cases to Rust, implemented by uriparseRichard Walters