mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-30 11:23:07 -04:00
- Updated `Cargo.toml` for the CLI to include `comfy-table` for improved output formatting. - Enhanced the daemon's shutdown process to provide clearer logging during shutdown initiation and completion. - Refactored the logo display function to use a colored ASCII representation, improving visual appeal. - Removed unnecessary CLI dependency on `clap` in the core, simplifying the dependency structure.
20 lines
599 B
TOML
20 lines
599 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "sd-cli"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
comfy-table = "7.1"
|
|
crossterm = "0.27"
|
|
indicatif = "0.17"
|
|
ratatui = "0.26"
|
|
sd-core = { path = "../../core", features = ["cli"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|