Skip to content

Commit

Permalink
fix: make ffmpeg-next dep optional with feature
Browse files Browse the repository at this point in the history
  • Loading branch information
drbh committed Dec 16, 2024
1 parent 59d510b commit c7fddef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async-stream = "0.3.5"
axum = { version = "0.7", features = ["json"] }
axum-tracing-opentelemetry = "0.16"
clap = { version = "4.4.5", features = ["derive", "env"] }
ffmpeg-next = "7.1.0"
ffmpeg-next = { version = "7.1.0", optional = true }
futures = "0.3.28"
hf-hub = { workspace = true }
itertools = "0.10"
Expand Down Expand Up @@ -77,4 +77,4 @@ default = ["ngrok"]
ngrok = ["dep:ngrok"]
google = []
kserve = []
video = []
video = ["ffmpeg-next"]

0 comments on commit c7fddef

Please sign in to comment.