Version v0.3.0-alpha.19

This commit is contained in:
Aode (lion) 2021-08-29 14:56:28 -05:00
parent 0d6505abb9
commit 3578303104
5 changed files with 8 additions and 14 deletions

10
Cargo.lock generated
View file

@ -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",

View file

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

View file

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

View file

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

View file

@ -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?;