diff --git a/Cargo.lock b/Cargo.lock index 3a6f962cb..a6886754c 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/core/Cargo.toml b/core/Cargo.toml index dbaf48b67..fb63248f5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -10,8 +10,11 @@ rust-version = "1.68.1" [features] default = [] -mobile = [] # This feature allows features to be disabled when the Core is running on mobile. -ffmpeg = ["dep:ffmpeg-next", "dep:sd-ffmpeg"] # This feature controls whether the Spacedrive Core contains functionality which requires FFmpeg. +mobile = [ +] # This feature allows features to be disabled when the Core is running on mobile. +ffmpeg = [ + "dep:sd-ffmpeg", +] # This feature controls whether the Spacedrive Core contains functionality which requires FFmpeg. location-watcher = ["dep:notify"] sync-messages = [] @@ -27,7 +30,13 @@ sd-file-ext = { path = "../crates/file-ext" } sd-sync = { path = "../crates/sync" } sd-p2p = { path = "../crates/p2p", features = ["specta", "serde"] } -rspc = { workspace = true, features = ["uuid", "chrono", "tracing", "alpha", "unstable"] } +rspc = { workspace = true, features = [ + "uuid", + "chrono", + "tracing", + "alpha", + "unstable", +] } httpz = { workspace = true } prisma-client-rust = { workspace = true } specta = { workspace = true } @@ -68,7 +77,6 @@ http-range = "0.1.5" mini-moka = "0.10.0" serde_with = "2.2.0" dashmap = { version = "5.4.0", features = ["serde"] } -ffmpeg-next = { version = "6.0.0", optional = true, features = [] } notify = { version = "5.0.0", default-features = false, features = [ "macos_fsevent", ], optional = true }