mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-01 11:53:36 -04:00
- Added a new end-to-end search test with real data to validate the complete search workflow, including file indexing and search result display. - Removed the outdated search integration test to streamline testing efforts. - Introduced the `chrono` dependency in the CLI for enhanced date handling in search operations. - Updated the search output structure to include matched content and improved pagination handling. These changes enhance the robustness of the search feature and ensure better integration with real-world data scenarios.
16 lines
454 B
TOML
16 lines
454 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "spacedrive-cli"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bincode = "1.3.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
sd-core = { path = "../../core" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|