deps: remove ffmpeg-next from the core (#808)

remove ffmpeg-next from the core
This commit is contained in:
jake
2023-05-10 05:44:27 +01:00
committed by GitHub
parent 6070c220d2
commit a376e0518d
2 changed files with 12 additions and 4 deletions

BIN
Cargo.lock generated
View File

Binary file not shown.

View File

@@ -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 }