Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce a borrowed version of the collator #5513

Merged
merged 22 commits into from
Sep 11, 2024
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b02048c
Introduce a borrowed version of the collator
hsivonen Sep 6, 2024
b4c0133
Fix collator tests in provider
hsivonen Sep 6, 2024
e7aa11c
Put CollatorBorrowed::try_new_unstable_internal behind compiled_data cfg
hsivonen Sep 6, 2024
f71d833
Run diplomat-gen
hsivonen Sep 6, 2024
50f1c6c
Regenerate READMEs
hsivonen Sep 6, 2024
6b3a97a
Fix collator benches
hsivonen Sep 6, 2024
c2a7d04
Add clippy annotations
hsivonen Sep 6, 2024
3c9f84d
Update Diplomat coverage
hsivonen Sep 6, 2024
90a59e8
Merge branch 'main' into collatorborrowedbis
hsivonen Sep 10, 2024
1763b5c
Merge inner and outer function for CollatorBorrowed::try_new
hsivonen Sep 10, 2024
4491411
Adjust how special_primaries is set up
hsivonen Sep 10, 2024
1f1f60b
Move items form missing_apis.txt to allowlist.rs
hsivonen Sep 10, 2024
39c8b78
Change the return type of Collator::try_new
hsivonen Sep 11, 2024
7f11dbe
Merge branch 'main' into collatorborrowedbis
hsivonen Sep 11, 2024
9e64309
Go back to Collator::try_new in collator tests
hsivonen Sep 11, 2024
adfce1e
Add hidden rust_links to CollatorBorrowed
hsivonen Sep 11, 2024
834b19f
Revert more collator constructor calls to use Collator::try_new
hsivonen Sep 11, 2024
49f555f
Test owned construction of the collator
hsivonen Sep 11, 2024
ef37b9c
Revert even more CollatorBorrowed::try_new
hsivonen Sep 11, 2024
50bd30c
Tweak diplomant allowlist
hsivonen Sep 11, 2024
aa66699
Merge branch 'main' into collatorborrowedbis
hsivonen Sep 11, 2024
2457a49
Run cargo make generate-readmes
hsivonen Sep 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions components/collator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -39,6 +39,8 @@ arraystring = { workspace = true }
atoi = { workspace = true }
icu = { path = "../../components/icu", default-features = false }
icu_locale_core = { path = "../../components/locale_core" }
icu_provider_adapters = { path = "../../provider/adapters" }
icu_normalizer_data = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = { workspace = true }
20 changes: 10 additions & 10 deletions components/collator/README.md

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

Loading