mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-04 21:35:43 -04:00
* Drop Tauri custom URI handler
Me no likely but it has to be done.
* fix app startup with location
* fix "Add Location" button on web
* Serve correct content range
* Backport changes from a670d5a0
* none of my homies like panics
* minor fixes
* fmt with new Rust version
26 lines
577 B
TOML
26 lines
577 B
TOML
[package]
|
|
name = "sd-server"
|
|
version = "0.1.0"
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
assets = []
|
|
|
|
[dependencies]
|
|
sd-core = { path = "../../core", features = [
|
|
"ffmpeg",
|
|
"location-watcher",
|
|
"heif",
|
|
] }
|
|
rspc = { workspace = true, features = ["axum"] }
|
|
axum = "0.6.18"
|
|
tokio = { workspace = true, features = ["sync", "rt-multi-thread", "signal"] }
|
|
tracing = { workspace = true }
|
|
ctrlc = "3.3.1"
|
|
http = "0.2.9"
|
|
tower-http = { version = "0.4.0", features = ["fs"] }
|
|
include_dir = "0.7.3"
|
|
mime_guess = "2.0.4"
|