28 releases

new 0.7.2 Apr 14, 2024
0.7.0 Sep 14, 2022
0.6.0 Jul 14, 2022
0.5.0 Feb 19, 2022
0.1.1 May 5, 2018

#1442 in Rust patterns

Download history 14871/week @ 2023-12-23 27760/week @ 2023-12-30 46842/week @ 2024-01-06 53998/week @ 2024-01-13 53554/week @ 2024-01-20 61968/week @ 2024-01-27 62153/week @ 2024-02-03 56467/week @ 2024-02-10 67613/week @ 2024-02-17 69540/week @ 2024-02-24 66146/week @ 2024-03-02 72725/week @ 2024-03-09 73263/week @ 2024-03-16 74452/week @ 2024-03-23 74429/week @ 2024-03-30 68556/week @ 2024-04-06

302,821 downloads per month
Used in 79 crates (37 directly)

MIT/Apache

535KB
8K SLoC

iri-string

Latest version Documentation Minimum rustc version: 1.60

String types for IRIs (Internationalized Resource Identifiers) and URIs (Uniform Resource Identifiers).

See the documentation for details.

Features

  • no_std support.
  • String types (both owned and borrowed) for RFC 3986 URIs and RFC 3987 IRIs.
    • Native slice types, so highly operable with Cow, ToOwned, etc.
    • URIs/IRIs validation.
    • Conversions between URIs and IRIs.
    • Decomposition into components.
  • IRI reference resolution algorithm.
  • IRI normalization algorithm.
  • Masking password part of an IRI (optional and not automatic).
  • Percent encoding of user-provided strings.
  • IRI builder.
  • RFC 6570 URI Template.

Feature flags

Direct

  • alloc (enabled by default)
    • Enables types and functions which require memory allocation.
    • Requires std or alloc crate available.
  • std (enabled by default)
    • Enables all std features (such as memory allocations and std::error::Error trait).
    • Requires std crate available.
    • This automatically enables alloc feature.

memchr

  • memchr
    • Enables optimization for internal parsers, using memchr crate.

serde

  • serde
    • Implements Serialize and Deserialize traits for string types.

CI

CI must pass on develop and master branches. No automated online CI is set up (since they consumes credit too fast), so run cargo make manual-ci-all locally before committing to these branches. On other branches, tests and some lints (such as dead_code) are allowed to fail, but all commits must be successfully compilable and must be formatted.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies