mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-23 07:59:59 -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>
28 lines
845 B
TOML
28 lines
845 B
TOML
[package]
|
|
name = "sd-sync-example"
|
|
version = "0.1.0"
|
|
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
rust-version = "1.64"
|
|
|
|
[dependencies]
|
|
# Spacedrive Sub-crates
|
|
sd-sync = { path = ".." }
|
|
|
|
# Workspace dependencies
|
|
axum = { workspace = true }
|
|
http = { workspace = true }
|
|
prisma-client-rust = { workspace = true }
|
|
rspc = { workspace = true, features = ["axum"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
# Specific Core dependencies
|
|
dotenv = "0.15.0"
|
|
tower-http = { version = "0.4.4", features = ["cors"] } # Update blocked by http
|