mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-23 16:07:15 -04:00
* Migrate to Tauri v2 Release Canidate * Formatting * Update pnpm * Update all tauri deps (js and rust) to Release Candidate 2 - A lot of misc fixes due to changes in the new versions of tauri, rspc and specta * Recreate pnpm-lock * Fix pnpm-lock * Formatting * Use 10 chars SHA for git deps - Update a couple of rust dependencies - Add taplo for toml auto formatting - Adjust some formatting configurations - Updated prettier and its plugins * Fix formatter settings * Minor improvements to Cargo.toml format --------- Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
38 lines
1.4 KiB
TOML
38 lines
1.4 KiB
TOML
[package]
|
|
name = "sd-task-system"
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ericson Soares <ericson@spacedrive.com>"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version = "1.75"
|
|
|
|
[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 = ["parking_lot", "rt-multi-thread", "sync", "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 = ["fs", "macros", "test-util"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tracing-test = { workspace = true, features = ["no-env-filter"] }
|
|
uuid = { workspace = true, features = ["serde"] }
|