mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 19:31:35 +00:00
Version v0.2.0-alpha.2-r1
This commit is contained in:
parent
ff7d3dc401
commit
91e6bb5be1
3 changed files with 10 additions and 6 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -786,8 +786,7 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ffmpeg-next"
|
name = "ffmpeg-next"
|
||||||
version = "4.3.0"
|
version = "4.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://git.asonix.dog/asonix/rust-ffmpeg?branch=main#47f5ee8b0538f74ed7a4af9df0bda57c14b441d8"
|
||||||
checksum = "1e37dadc7853e912107a8a671b7b22bff1309c09d0ba8851493028f06a36fc9f"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"ffmpeg-sys-next",
|
"ffmpeg-sys-next",
|
||||||
|
@ -797,8 +796,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ffmpeg-sys-next"
|
name = "ffmpeg-sys-next"
|
||||||
version = "4.3.0"
|
version = "4.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://git.asonix.dog/asonix/rust-ffmpeg-sys?branch=main#993c84e710605ffc55787600deafda3f575abe6f"
|
||||||
checksum = "01bba495d04757f7a3e471b3e411759a8968571c4618235bc1c9e1099b4a84d1"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bindgen 0.54.0",
|
"bindgen 0.54.0",
|
||||||
"cc",
|
"cc",
|
||||||
|
|
|
@ -19,7 +19,6 @@ anyhow = "1.0"
|
||||||
base64 = "0.12.1"
|
base64 = "0.12.1"
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
ffmpeg-sys-next = "4.3.0"
|
|
||||||
magick_rust = { version = "0.14.0", git = "https://git.asonix.dog/asonix/magick-rust" }
|
magick_rust = { version = "0.14.0", git = "https://git.asonix.dog/asonix/magick-rust" }
|
||||||
mime = "0.3.1"
|
mime = "0.3.1"
|
||||||
once_cell = "1.4.0"
|
once_cell = "1.4.0"
|
||||||
|
@ -38,5 +37,12 @@ uuid = { version = "0.8", features = ["v4"] }
|
||||||
|
|
||||||
[dependencies.ffmpeg-next]
|
[dependencies.ffmpeg-next]
|
||||||
version = "4.3.0"
|
version = "4.3.0"
|
||||||
|
git = "https://git.asonix.dog/asonix/rust-ffmpeg"
|
||||||
|
branch = "main"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["ffmpeg42", "codec", "filter", "device", "format", "resampling", "postprocessing", "software-resampling", "software-scaling"]
|
features = ["ffmpeg42", "codec", "filter", "device", "format", "resampling", "postprocessing", "software-resampling", "software-scaling"]
|
||||||
|
|
||||||
|
[dependencies.ffmpeg-sys-next]
|
||||||
|
version = "4.3.0"
|
||||||
|
git = "https://git.asonix.dog/asonix/rust-ffmpeg-sys"
|
||||||
|
branch = "main"
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
pictrs:
|
pictrs:
|
||||||
image: asonix/pictrs:v0.2.0-alpha.2-r0
|
image: asonix/pictrs:v0.2.0-alpha.2-r1
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8080:8080"
|
- "127.0.0.1:8080:8080"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
Loading…
Reference in a new issue