Bump version
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
asonix 2023-12-12 18:02:54 -06:00
parent ed8fce817b
commit 903b2b0d56
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -1739,7 +1739,7 @@ dependencies = [
[[package]] [[package]]
name = "pict-rs" name = "pict-rs"
version = "0.5.0-rc.1" version = "0.5.0-rc.2"
dependencies = [ dependencies = [
"actix-form-data", "actix-form-data",
"actix-web", "actix-web",

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.5.0-rc.1" version = "0.5.0-rc.2"
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

@ -11,7 +11,7 @@
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
pname = "pict-rs"; pname = "pict-rs";
version = "0.5.0-rc.1"; version = "0.5.0-rc.2";
src = ./.; src = ./.;
cargoLock = { cargoLock = {
@ -21,7 +21,7 @@ rustPlatform.buildRustPackage {
nativeBuildInputs = [ stdenv makeWrapper ]; nativeBuildInputs = [ stdenv makeWrapper ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ]; buildInputs = lib.optionals stdenv.isDarwin [ Security ];
RUSTFLAGS = "--cfg tokio_unstable --cfg uuid_unstable"; RUSTFLAGS = "--cfg tokio_unstable";
TARGET_CC = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"; TARGET_CC = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
TARGET_AR = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}ar"; TARGET_AR = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}ar";