mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-27 10:01:00 -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>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "sd-task-system"
|
|
version = "0.1.0"
|
|
authors = ["Ericson Soares <ericson@spacedrive.com>"]
|
|
rust-version = "1.75"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
# Workspace deps
|
|
async-channel = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
futures = { workspace = true }
|
|
futures-concurrency = { workspace = true }
|
|
pin-project-lite = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"sync",
|
|
"parking_lot",
|
|
"rt-multi-thread",
|
|
"time",
|
|
] }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
# Specific Task System dependencies
|
|
downcast-rs = "1.2"
|
|
|
|
[dev-dependencies]
|
|
lending-stream = { workspace = true }
|
|
rand = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "test-util", "fs"] }
|
|
tracing-test = { workspace = true, features = ["no-env-filter"] }
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|