mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2025-01-11 20:15:49 +00:00
Update version, pict-rs.toml
This commit is contained in:
parent
e1ba1c13e5
commit
b4d3351efe
4 changed files with 5 additions and 11 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1620,7 +1620,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.4.1"
|
version = "0.4.2-rc.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-form-data",
|
"actix-form-data",
|
||||||
"actix-rt",
|
"actix-rt",
|
||||||
|
|
|
@ -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.4.1"
|
version = "0.4.2-rc.1"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "pict-rs";
|
pname = "pict-rs";
|
||||||
version = "0.4.1";
|
version = "0.4.2-rc.1";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
|
10
pict-rs.toml
10
pict-rs.toml
|
@ -24,13 +24,7 @@ api_key = 'API_KEY'
|
||||||
# environment variable: PICTRS__SERVER__CLIENT_POOL_SIZE
|
# environment variable: PICTRS__SERVER__CLIENT_POOL_SIZE
|
||||||
# default: 100
|
# default: 100
|
||||||
#
|
#
|
||||||
# This number is multiplied the number of cores available to pict-rs. Running on a 2 core machine
|
# Sets the maximum number of allowed idle connections per-host.
|
||||||
# with the default value will result in 200 pooled connections. Running on a 32 core machine with
|
|
||||||
# the default value will result in 3200 pooled connections.
|
|
||||||
#
|
|
||||||
# This number can be lowered to keep pict-rs within ulimit bounds if you encounter errors related to
|
|
||||||
# "Too many open files". Alternatively, increasing the ulimit of your system can solve this problem
|
|
||||||
# as well.
|
|
||||||
client_pool_size = 100
|
client_pool_size = 100
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,7 +63,7 @@ targets = 'warn,tracing_actix_web=info,actix_server=info,actix_web=info'
|
||||||
#
|
#
|
||||||
# services:
|
# services:
|
||||||
# pictrs:
|
# pictrs:
|
||||||
# image: asonix/pictrs:0.4.1
|
# image: asonix/pictrs:0.4
|
||||||
# ports:
|
# ports:
|
||||||
# - "127.0.0.1:8080:8080"
|
# - "127.0.0.1:8080:8080"
|
||||||
# - "127.0.0.1:6669:6669" # this is the line that exposes console
|
# - "127.0.0.1:6669:6669" # this is the line that exposes console
|
||||||
|
|
Loading…
Reference in a new issue