diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 23:21:07 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 23:21:07 +0100 |
| commit | 82c14f030b36938cb10c1c8f8e880d0e0acaadc2 (patch) | |
| tree | 50d399aebb9d374c867d86482da129fce1b1c4e7 /oryxc/Cargo.toml | |
| parent | f1a862a334efb1aa1f1cc2c3f30dcbffeaa9b4e3 (diff) | |
Begin working on symbol resolution
Diffstat (limited to 'oryxc/Cargo.toml')
| -rw-r--r-- | oryxc/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/oryxc/Cargo.toml b/oryxc/Cargo.toml index 3cd08fb..cd5dedf 100644 --- a/oryxc/Cargo.toml +++ b/oryxc/Cargo.toml @@ -4,10 +4,11 @@ version = "0.1.0" edition = "2024" [dependencies] -crossbeam-deque = "0.8.6" -# icu = { version = "2.1.1", features = ["compiled_data"] } clap = { version = "4", features = ["derive"] } +crossbeam-deque = "0.8.6" +dashmap = "6.1.0" # num-rational = "0.4.2" phf = { version = "0.13.1", features = ["macros"] } soa-rs = "0.9.1" +unicode-normalization = "0.1.25" unicode-width = "0.2.2" |