mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-01 20:03:51 -04:00
- Updated `bincode` dependency to version 1.3.3 for improved performance and security. - Refactored error handling in `error.rs` to use `bincode::Error` instead of `bincode::ErrorKind`, ensuring better error management. - Enhanced macro definitions in `macros.rs` to utilize the updated error handling structure. - Improved error reporting in `manager.rs` when creating directories, providing clearer context for IO errors. - Added a new design document for Sync Conduits, detailing the architecture and implementation plan for file synchronization in Spacedrive.
15 lines
399 B
TOML
15 lines
399 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "spacedrive-cli"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bincode = "1.3.3"
|
|
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"] }
|