mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-27 18:08:06 -04:00
* Error handling for sd-core-sync crate Also a bunch of tweaks and fixes * Update core.ts * Auto format * Comment out background_processing_percentage on frontend too - Update rust version in contributing * Trying to avoid data loss on actor stop * Stronger linter on sync generator * Stronger lint on sync subcrate * Clean back tasks.json file * TS typechecking * Autoformat * Add more verbose errors for Cloud REST API * Removing some comments Copilot is fun sometimes lol * Properly stopping actors * Fix ingest stop * Racing on stop for actors * Error conversion from merge with main --------- Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com> Co-authored-by: Arnab Chakraborty <11457760+Rocky43007@users.noreply.github.com>
35 lines
944 B
TOML
35 lines
944 B
TOML
[package]
|
|
name = "sd-core-sync"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
# Spacedrive Sub-crates
|
|
sd-prisma = { path = "../../../crates/prisma" }
|
|
sd-sync = { path = "../../../crates/sync" }
|
|
sd-utils = { path = "../../../crates/utils" }
|
|
sd-actors = { path = "../../../crates/actors" }
|
|
|
|
# Workspace dependencies
|
|
async-channel = { workspace = true }
|
|
futures = { workspace = true }
|
|
futures-concurrency = { workspace = true }
|
|
prisma-client-rust = { workspace = true, features = ["rspc"] }
|
|
rmpv = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
rspc = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uhlc = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tracing-test = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|