diff options
| author | romir kulshrestha <romir.kulshrestha@gmail.com> | 2026-03-06 12:29:06 +0100 |
|---|---|---|
| committer | romir kulshrestha <romir.kulshrestha@gmail.com> | 2026-03-06 13:14:38 +0100 |
| commit | 5df9a24dbfa69884ac473c1e6c15187371362980 (patch) | |
| tree | 9d763520a11932d56cb67de94836b750a06d43f1 | |
| parent | c72d67547813648650dcd0d9dea58ec13a69b432 (diff) | |
Add unicode-normalization to deps
| -rw-r--r-- | Cargo.lock | 27 | ||||
| -rw-r--r-- | oryxc/Cargo.toml | 3 |
2 files changed, 28 insertions, 2 deletions
@@ -567,7 +567,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] -name = "oryx" +name = "oryxc" version = "0.1.0" dependencies = [ "boxcar", @@ -576,6 +576,7 @@ dependencies = [ "dashmap", "phf", "soa-rs", + "unicode-normalization", "unicode-width", "ureq", "zip", @@ -939,6 +940,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" [[package]] +name = "tinyvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] name = "typed-path" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -957,6 +973,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] +name = "unicode-normalization" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" +dependencies = [ + "tinyvec", +] + +[[package]] name = "unicode-width" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/oryxc/Cargo.toml b/oryxc/Cargo.toml index 62936a0..4230086 100644 --- a/oryxc/Cargo.toml +++ b/oryxc/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "oryx" +name = "oryxc" version = "0.1.0" edition = "2024" @@ -10,6 +10,7 @@ crossbeam-deque = "0.8.6" dashmap = "6.1.0" phf = { version = "0.13.1", features = ["macros"] } soa-rs = "0.9.1" +unicode-normalization = "0.1.25" unicode-width = "0.2.2" [features] |