Upload fastsearch-tauri/src-tauri/Cargo.toml
Browse files
fastsearch-tauri/src-tauri/Cargo.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "fastsearch-tauri"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "FastSeek - macOS Spotlight-style file search for Windows"
|
| 5 |
+
authors = ["anshdadhich"]
|
| 6 |
+
license = "MIT"
|
| 7 |
+
edition = "2021"
|
| 8 |
+
rust-version = "1.70"
|
| 9 |
+
|
| 10 |
+
[build-dependencies]
|
| 11 |
+
tauri-build = { version = "1.5", features = [] }
|
| 12 |
+
|
| 13 |
+
[dependencies]
|
| 14 |
+
tauri = { version = "1.6", features = ["shell-open", "system-tray"] }
|
| 15 |
+
rdev = "0.5"
|
| 16 |
+
serde = { version = "1", features = ["derive"] }
|
| 17 |
+
serde_json = "1"
|
| 18 |
+
once_cell = "1.19"
|
| 19 |
+
parking_lot = "0.12"
|
| 20 |
+
crossbeam-channel = "0.5"
|
| 21 |
+
fastsearch-core = { path = "../../fastsearch-core" }
|
| 22 |
+
|
| 23 |
+
[features]
|
| 24 |
+
default = ["custom-protocol"]
|
| 25 |
+
custom-protocol = ["tauri/custom-protocol"]
|