mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-09 18:16:23 -04:00
* move Rust backend to rspc * move server to Axum + remove parts of old bridge * move frontend over to @rspc/client * move core to rspc + update deps * fix Typescript errors + upgrade deps * document invalidate_query! macro * general cleanup + upgrade to PCR 0.6.0 * prisma error handling * upgrade to rspc 0.0.4 * update vite-plugin-ssr * fix typescript * fix builds * put landing page app name back * hardcode ffmpeg version on Windows * rename 'command' to 'mutation' to line up with react-query terminology * upgrade rspc to v0.0.5 + fix types * use shared ffmpeg binaries * general Typescript cleanup * fix clippy workflow failing due to tauri proc-macro Co-authored-by: Brendan Allan <brendonovich@outlook.com>
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
name = "sdcore"
|
|
version = "0.1.0"
|
|
description = "Virtual distributed filesystem engine that powers Spacedrive."
|
|
authors = ["Spacedrive Technology Inc."]
|
|
license = "GNU GENERAL PUBLIC LICENSE"
|
|
repository = "https://github.com/spacedriveapp/spacedrive"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
p2p = [] # This feature controlls whether the Spacedrive Core contains the Peer to Peer syncing engine (It isn't required for the hosted core so we can disable it).
|
|
|
|
[dependencies]
|
|
hostname = "0.3.1"
|
|
|
|
# Universal Dependencies
|
|
base64 = "0.13.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
serde_json = "1.0"
|
|
futures = "0.3"
|
|
data-encoding = "2.3.2"
|
|
ring = "0.17.0-alpha.10"
|
|
int-enum = "0.4.0"
|
|
rmp = "^0.8.11"
|
|
rmp-serde = "^1.1.0"
|
|
|
|
# Project dependencies
|
|
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust.git", branch = "0.6.0", features = ["rspc"] }
|
|
rspc = { version = "0.0.4", features = ["axum", "tauri", "uuid", "chrono", "tracing"] }
|
|
walkdir = "^2.3.2"
|
|
uuid = { version = "1.1.2", features = ["v4", "serde"] }
|
|
sysinfo = "0.23.9"
|
|
thiserror = "1.0.30"
|
|
core-derive = { path = "./derive" }
|
|
|
|
tokio = { version = "1.17.0", features = ["sync", "rt-multi-thread"] }
|
|
include_dir = { version = "0.7.2", features = ["glob"] }
|
|
async-trait = "^0.1.52"
|
|
image = "0.24.1"
|
|
webp = "0.2.2"
|
|
ffmpeg-next = "5.0.3"
|
|
fs_extra = "1.2.0"
|
|
tracing = "0.1.35"
|
|
tracing-subscriber = "0.3.14"
|
|
async-stream = "0.3.3"
|
|
once_cell = "1.13.0"
|
|
ctor = "0.1.22"
|