Upload Cargo.toml
Browse files- Cargo.toml +4 -4
Cargo.toml
CHANGED
|
@@ -11,8 +11,6 @@ path = "src/lib.rs"
|
|
| 11 |
name = "fastsearch"
|
| 12 |
path = "src/main.rs"
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
[dependencies]
|
| 17 |
windows = { version = "0.60", features = [
|
| 18 |
"Win32_Storage_FileSystem",
|
|
@@ -27,7 +25,7 @@ windows = { version = "0.60", features = [
|
|
| 27 |
"Win32_Graphics_DirectWrite",
|
| 28 |
"Win32_Graphics_Dxgi",
|
| 29 |
"Win32_Graphics_Dxgi_Common",
|
| 30 |
-
"Win32_UI",
|
| 31 |
"Win32_Graphics_Gdi",
|
| 32 |
"Win32_Graphics_Dwm",
|
| 33 |
"Win32_UI_Input",
|
|
@@ -35,6 +33,7 @@ windows = { version = "0.60", features = [
|
|
| 35 |
"Win32_UI_Shell",
|
| 36 |
"Win32_UI_Input_KeyboardAndMouse",
|
| 37 |
"Win32_System_Diagnostics_Debug",
|
|
|
|
| 38 |
] }
|
| 39 |
rayon = "1.10"
|
| 40 |
crossbeam-channel = "0.5"
|
|
@@ -43,6 +42,7 @@ once_cell = "1.19"
|
|
| 43 |
parking_lot = "0.12"
|
| 44 |
bincode = "1.3"
|
| 45 |
serde = { version = "1", features = ["derive"] }
|
|
|
|
| 46 |
lz4_flex = "0.11"
|
| 47 |
ctrlc = "3.5"
|
| 48 |
memmap2 = "0.9"
|
|
@@ -54,4 +54,4 @@ winres = "0.1"
|
|
| 54 |
opt-level = 3
|
| 55 |
lto = true
|
| 56 |
codegen-units = 1
|
| 57 |
-
strip = true
|
|
|
|
| 11 |
name = "fastsearch"
|
| 12 |
path = "src/main.rs"
|
| 13 |
|
|
|
|
|
|
|
| 14 |
[dependencies]
|
| 15 |
windows = { version = "0.60", features = [
|
| 16 |
"Win32_Storage_FileSystem",
|
|
|
|
| 25 |
"Win32_Graphics_DirectWrite",
|
| 26 |
"Win32_Graphics_Dxgi",
|
| 27 |
"Win32_Graphics_Dxgi_Common",
|
| 28 |
+
"Win32_UI",
|
| 29 |
"Win32_Graphics_Gdi",
|
| 30 |
"Win32_Graphics_Dwm",
|
| 31 |
"Win32_UI_Input",
|
|
|
|
| 33 |
"Win32_UI_Shell",
|
| 34 |
"Win32_UI_Input_KeyboardAndMouse",
|
| 35 |
"Win32_System_Diagnostics_Debug",
|
| 36 |
+
"Win32_System_Pipes",
|
| 37 |
] }
|
| 38 |
rayon = "1.10"
|
| 39 |
crossbeam-channel = "0.5"
|
|
|
|
| 42 |
parking_lot = "0.12"
|
| 43 |
bincode = "1.3"
|
| 44 |
serde = { version = "1", features = ["derive"] }
|
| 45 |
+
serde_json = "1.0"
|
| 46 |
lz4_flex = "0.11"
|
| 47 |
ctrlc = "3.5"
|
| 48 |
memmap2 = "0.9"
|
|
|
|
| 54 |
opt-level = 3
|
| 55 |
lto = true
|
| 56 |
codegen-units = 1
|
| 57 |
+
strip = true
|