mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Version v0.3.0-alpha.19
This commit is contained in:
parent
0d6505abb9
commit
3578303104
5 changed files with 8 additions and 14 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -995,7 +995,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.3.0-alpha.18"
|
version = "0.3.0-alpha.19"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-form-data",
|
"actix-form-data",
|
||||||
"actix-fs",
|
"actix-fs",
|
||||||
|
@ -1495,18 +1495,18 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.27"
|
version = "1.0.28"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e1c319f97498ee34e17e1d7813fcd28a0ec1aaf350a4c44883d2fe741edb1c70"
|
checksum = "283d5230e63df9608ac7d9691adc1dfb6e701225436eb64d0b9a7f0a5a04f6ec"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.27"
|
version = "1.0.28"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8bf955fbafde33573fd32e90312488fa2ea68f7a220a5faab1809fa90690224f"
|
checksum = "fa3884228611f5cd3608e2d409bf7dce832e4eb3135e3f11addbd7e41bd68e71"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
description = "A simple image hosting service"
|
description = "A simple image hosting service"
|
||||||
version = "0.3.0-alpha.18"
|
version = "0.3.0-alpha.19"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -8,8 +8,6 @@ services:
|
||||||
args:
|
args:
|
||||||
UID: "${USER_ID:-1000}"
|
UID: "${USER_ID:-1000}"
|
||||||
GID: "${GROUP_ID:-1000}"
|
GID: "${GROUP_ID:-1000}"
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
environment:
|
environment:
|
||||||
|
@ -25,8 +23,6 @@ services:
|
||||||
args:
|
args:
|
||||||
UID: "${USER_ID:-1000}"
|
UID: "${USER_ID:-1000}"
|
||||||
GID: "${GROUP_ID:-1000}"
|
GID: "${GROUP_ID:-1000}"
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
environment:
|
environment:
|
||||||
|
@ -42,8 +38,6 @@ services:
|
||||||
args:
|
args:
|
||||||
UID: "${USER_ID:-1000}"
|
UID: "${USER_ID:-1000}"
|
||||||
GID: "${GROUP_ID:-1000}"
|
GID: "${GROUP_ID:-1000}"
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
pictrs:
|
pictrs:
|
||||||
image: asonix/pictrs:v0.3.0-alpha.18
|
image: asonix/pictrs:v0.3.0-alpha.19
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8080:8080"
|
- "127.0.0.1:8080:8080"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
|
@ -184,7 +184,7 @@ where
|
||||||
.arg(&"convert")
|
.arg(&"convert")
|
||||||
.arg(&input.as_ref())
|
.arg(&input.as_ref())
|
||||||
.args(args)
|
.args(args)
|
||||||
.arg(&output.as_ref())
|
.arg(output_file)
|
||||||
.spawn()?
|
.spawn()?
|
||||||
.wait()
|
.wait()
|
||||||
.await?;
|
.await?;
|
||||||
|
|
Loading…
Reference in a new issue