aboutsummaryrefslogtreecommitdiff
path: root/src/authority.rs
AgeCommit message (Collapse)Author
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-10-30Add and apply rustfmt configurationRichard Walters
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-14Distribute tests closer to the code they testRichard 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-13Fix issue with namingRichard Walters
Use "to_" prefix instead of "as_" for functions which create values (expensive). See: https://rust-lang.github.io/api-guidelines/naming.html#ad-hoc-conversions-follow-as_-to_-into_-conventions-c-conv
2020-10-13Add documentation (Rust)Richard Walters
2020-10-13Consolidate crate-wide warning attributes to crate level (lib.rs)Richard Walters
2020-10-13Move authority and codec functions to their own modulesRichard Walters