Skip to content

Commit

Permalink
fix: change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jan 8, 2024
1 parent b3fbf16 commit 1a5a7ab
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,5 +1,5 @@
[package]
name = "unicode-locale-id-parser"
name = "intl-locale"
version = "0.1.0"
edition = "2021"

Expand Down
3 changes: 1 addition & 2 deletions README.md
@@ -1,8 +1,7 @@
# unicode-locale-id-parser
# intl-locale

This crate for [Unicode Locale Identifiers](https://unicode.org/reports/tr35/#Unicode_locale_identifier) parser.


## ©️ License

[MIT](https://opensource.org/licenses/MIT)
2 changes: 1 addition & 1 deletion benches/parse_language_id.rs
@@ -1,5 +1,5 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use unicode_locale_id_parser::parse_unicode_language_id;
use intl_locale::parse_unicode_language_id;

fn language_identifier_parser_bench(c: &mut Criterion) {
let strings = [
Expand Down
2 changes: 1 addition & 1 deletion benches/parse_locale_id.rs
@@ -1,5 +1,5 @@
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use unicode_locale_id_parser::parse_unicode_locale_id;
use intl_locale::parse_unicode_locale_id;

fn locale_identifier_parser_bench(c: &mut Criterion) {
let strings = [
Expand Down

0 comments on commit 1a5a7ab

Please sign in to comment.