mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-24 08:28:27 -04:00
* Moving file-path-helper to a sub-crate on core * Parallel walker tested and working * Change inner core crate names to sd-core-* naming scheme * Moving stuff around * Save and Update tasks for the new indexer job * Some initial drafts on the new job system * More drafts on job system * Changing walker task to a more explicit state machine Also drafting more of job system * More drafting on job resume * Completed the draft on job system inner workings * New job context abstraction to decouple library stuff from job system * Properly use composition on task dispatcher * First draft on indexer job * Job serialization * Handling ancestors in the distributed walker for indexer * Saving computed directories sizes on a location to db * Enable a way to check if jobs are running in a location * Progress reporting on indexer job * Reorganizing modules * Shallow indexer * Rust fmt * Attempting windows CI fix * Attempting windows CI fix again * Attempting windows CI fix again
25 lines
646 B
TOML
25 lines
646 B
TOML
[package]
|
|
name = "sd-sync-example"
|
|
version = "0.1.0"
|
|
rust-version = "1.64"
|
|
publish = false
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
# Spacedrive Sub-crates
|
|
sd-sync = { path = ".." }
|
|
|
|
axum = { workspace = true }
|
|
rspc = { workspace = true, features = ["axum"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
prisma-client-rust = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
dotenv = "0.15.0"
|
|
tower-http = { version = "0.3.4", features = ["cors"] }
|
|
http = "0.2.8"
|