Upload Cargo.toml
Browse files- Cargo.toml +3 -57
Cargo.toml
CHANGED
|
@@ -1,57 +1,3 @@
|
|
| 1 |
-
[
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
edition = "2021"
|
| 5 |
-
|
| 6 |
-
[lib]
|
| 7 |
-
name = "fastsearch"
|
| 8 |
-
path = "src/lib.rs"
|
| 9 |
-
|
| 10 |
-
[[bin]]
|
| 11 |
-
name = "fastsearch"
|
| 12 |
-
path = "src/main.rs"
|
| 13 |
-
|
| 14 |
-
[dependencies]
|
| 15 |
-
windows = { version = "0.60", features = [
|
| 16 |
-
"Win32_Storage_FileSystem",
|
| 17 |
-
"Win32_Security",
|
| 18 |
-
"Win32_System_Ioctl",
|
| 19 |
-
"Win32_System_IO",
|
| 20 |
-
"Win32_Foundation",
|
| 21 |
-
"Win32_System_Threading",
|
| 22 |
-
"Win32_System_LibraryLoader",
|
| 23 |
-
"Win32_Graphics_Direct2D",
|
| 24 |
-
"Win32_Graphics_Direct2D_Common",
|
| 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",
|
| 32 |
-
"Win32_UI_WindowsAndMessaging",
|
| 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"
|
| 40 |
-
fuzzy-matcher = "0.3"
|
| 41 |
-
once_cell = "1.19"
|
| 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"
|
| 49 |
-
|
| 50 |
-
[build-dependencies]
|
| 51 |
-
winres = "0.1"
|
| 52 |
-
|
| 53 |
-
[profile.release]
|
| 54 |
-
opt-level = 3
|
| 55 |
-
lto = true
|
| 56 |
-
codegen-units = 1
|
| 57 |
-
strip = true
|
|
|
|
| 1 |
+
[workspace]
|
| 2 |
+
members = ["fastsearch-core", "fastsearch-tauri/src-tauri"]
|
| 3 |
+
resolver = "2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|