Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/servo/rust-url
URL parser for Rust
https://github.com/servo/rust-url
Last synced: 3 days ago
JSON representation
URL parser for Rust
- Host: GitHub
- URL: https://github.com/servo/rust-url
- Owner: servo
- License: apache-2.0
- Created: 2013-12-04T20:19:38.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T07:42:04.000Z (about 1 month ago)
- Last Synced: 2024-10-29T11:28:41.380Z (about 1 month ago)
- Language: Rust
- Homepage: https://docs.rs/url/
- Size: 3.81 MB
- Stars: 1,318
- Watchers: 27
- Forks: 328
- Open Issues: 138
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
- Security: SECURITY.md
Awesome Lists containing this project
- my-awesome - servo/rust-url - 12 star:1.3k fork:0.3k URL parser for Rust (Rust)
README
rust-url
========[![Build status](https://github.com/servo/rust-url/workflows/CI/badge.svg)](https://github.com/servo/rust-url/actions?query=workflow%3ACI)
[![Coverage](https://codecov.io/gh/servo/rust-url/branch/master/graph/badge.svg)](https://codecov.io/gh/servo/rust-url)
[![Chat](https://img.shields.io/badge/chat-%23rust--url:mozilla.org-%2346BC99?logo=Matrix)](https://matrix.to/#/#rust-url:mozilla.org)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE-MIT)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE-APACHE)URL library for Rust, based on the [URL Standard](https://url.spec.whatwg.org/).
[Documentation](https://docs.rs/url)
Please see [UPGRADING.md](https://github.com/servo/rust-url/blob/main/UPGRADING.md) if you are upgrading from a previous version.
## Alternative Unicode back ends
`url` depends on the `idna` crate. By default, `idna` uses [ICU4X](https://github.com/unicode-org/icu4x/) as its Unicode back end. If you wish to opt for different tradeoffs between correctness, run-time performance, binary size, compile time, and MSRV, please see the [README of the latest version of the `idna_adapter` crate](https://docs.rs/crate/idna_adapter/latest) for how to opt into a different Unicode back end.