11 stable releases

3.1.0 Aug 19, 2023
3.0.1 Jun 23, 2023
2.0.0 Jan 11, 2019
1.2.2 Dec 31, 2018
1.0.0 May 25, 2017

#23 in Internationalization (i18n)

Download history 1346/week @ 2024-01-01 1471/week @ 2024-01-08 1387/week @ 2024-01-15 1630/week @ 2024-01-22 1145/week @ 2024-01-29 1345/week @ 2024-02-05 1141/week @ 2024-02-12 1313/week @ 2024-02-19 1218/week @ 2024-02-26 1310/week @ 2024-03-04 1403/week @ 2024-03-11 1398/week @ 2024-03-18 1305/week @ 2024-03-25 1387/week @ 2024-04-01 1139/week @ 2024-04-08 1295/week @ 2024-04-15

5,264 downloads per month
Used in 8 crates (5 directly)

MIT license

19KB
258 lines

accept-language

A tiny library for parsing the Accept-Language header from browsers (as defined here)

Usage

accept-language is intended to be used by a web server, probably to decide which languages to serve up to the user based on their preferred language and the languages your application supports.

At it's most basic, it looks like this

extern crate accept_language;

use accept_language::{intersection, parse};

let user_languages = parse("en-US, en-GB;q=0.5");
let common_languages = intersection("en-US, en-GB;q=0.5", vec!["en-US", "de", "en-GB"]);

For more info and to view the full documentation, check them out on docs.rs.

Stability

accept-language is fuzz tested with cargo-fuzz on every PR and push via GitHub actions.

Contributing

Contributions are always welcome! If you found a bug, please submit an issue. If you'd like to submit a patch or feature, feel free to submit a pull request. rustfmt should be used to have consistent code formatting throughout the project.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Changelog

License

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Mike Engel
Mike Engel

🐛 💬 💻 📖 🎨 🤔 🚇 👀 ⚠️
Lukas Kalbertodt
Lukas Kalbertodt

💻
Sean Stangl
Sean Stangl

💻 🐛 ⚠️
Kornel
Kornel

💻
Daniel Lockyer
Daniel Lockyer

🐛
Peter C. S. Scholtens
Peter C. S. Scholtens

🐛 💻

This project follows the all-contributors specification. Contributions of any kind welcome!

No runtime deps