diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-10 19:06:46 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-10 19:06:46 +0200 |
| commit | 63cfcbe7a7745b276de58ec92e0141b958c44feb (patch) | |
| tree | 990e33a83756e27187033579ee2f85d5c79169d5 /Cargo.toml | |
| parent | b747ca8af52129876b577a4f20f7105a05c6b002 (diff) | |
use unsafe blocks instead of mutexes
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ edition = "2021" [dependencies] dirs = "5.0.1" -lazy_static = "1.5.0" -mlua = { version = "0.9.9", features = ["luajit", "send"] } +mlua = { version = "0.9.9", features = ["luajit"] } +once_cell = "1.19.0" ratatui = "0.27.0" tree-sitter-highlight = "0.22.6" tree-sitter-lua = "0.1.0" |