Upload Cargo.toml
Browse files- Cargo.toml +57 -0
Cargo.toml
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "fastsearch"
|
| 3 |
+
version = "0.1.0"
|
| 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 |
+
|
| 15 |
+
|
| 16 |
+
[dependencies]
|
| 17 |
+
windows = { version = "0.60", features = [
|
| 18 |
+
"Win32_Storage_FileSystem",
|
| 19 |
+
"Win32_Security",
|
| 20 |
+
"Win32_System_Ioctl",
|
| 21 |
+
"Win32_System_IO",
|
| 22 |
+
"Win32_Foundation",
|
| 23 |
+
"Win32_System_Threading",
|
| 24 |
+
"Win32_System_LibraryLoader",
|
| 25 |
+
"Win32_Graphics_Direct2D",
|
| 26 |
+
"Win32_Graphics_Direct2D_Common",
|
| 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",
|
| 34 |
+
"Win32_UI_WindowsAndMessaging",
|
| 35 |
+
"Win32_UI_Shell",
|
| 36 |
+
"Win32_UI_Input_KeyboardAndMouse",
|
| 37 |
+
"Win32_System_Diagnostics_Debug",
|
| 38 |
+
] }
|
| 39 |
+
rayon = "1.10"
|
| 40 |
+
crossbeam-channel = "0.5"
|
| 41 |
+
fuzzy-matcher = "0.3"
|
| 42 |
+
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"
|
| 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
|