Upload fastsearch-core/Cargo.toml
Browse files- fastsearch-core/Cargo.toml +35 -0
fastsearch-core/Cargo.toml
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "fastsearch-core"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
windows = { version = "0.60", features = [
|
| 8 |
+
"Win32_Storage_FileSystem",
|
| 9 |
+
"Win32_Security",
|
| 10 |
+
"Win32_System_Ioctl",
|
| 11 |
+
"Win32_System_IO",
|
| 12 |
+
"Win32_Foundation",
|
| 13 |
+
"Win32_System_Threading",
|
| 14 |
+
"Win32_System_LibraryLoader",
|
| 15 |
+
"Win32_UI",
|
| 16 |
+
"Win32_Graphics_Gdi",
|
| 17 |
+
"Win32_Graphics_Dwm",
|
| 18 |
+
"Win32_UI_Input",
|
| 19 |
+
"Win32_UI_WindowsAndMessaging",
|
| 20 |
+
"Win32_UI_Shell",
|
| 21 |
+
"Win32_UI_Input_KeyboardAndMouse",
|
| 22 |
+
"Win32_System_Diagnostics_Debug",
|
| 23 |
+
"Win32_System_Pipes",
|
| 24 |
+
] }
|
| 25 |
+
rayon = "1.10"
|
| 26 |
+
crossbeam-channel = "0.5"
|
| 27 |
+
fuzzy-matcher = "0.3"
|
| 28 |
+
once_cell = "1.19"
|
| 29 |
+
parking_lot = "0.12"
|
| 30 |
+
bincode = "1.3"
|
| 31 |
+
serde = { version = "1", features = ["derive"] }
|
| 32 |
+
serde_json = "1.0"
|
| 33 |
+
lz4_flex = "0.11"
|
| 34 |
+
ctrlc = "3.5"
|
| 35 |
+
memmap2 = "0.9"
|