mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 22:19:49 -04:00
deps: remove ffmpeg-next from the core (#808)
remove ffmpeg-next from the core
This commit is contained in:
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user