aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
AgeCommit message (Collapse)Author
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