From 903b2b0d56b02bbe3d34f76a410ace64c6bdb50e Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 12 Dec 2023 18:02:54 -0600 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- pict-rs.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80f44c7..314a5da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1739,7 +1739,7 @@ dependencies = [ [[package]] name = "pict-rs" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" dependencies = [ "actix-form-data", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index fcba0a7..1b5a501 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pict-rs" description = "A simple image hosting service" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" diff --git a/pict-rs.nix b/pict-rs.nix index 070e954..2ed4211 100644 --- a/pict-rs.nix +++ b/pict-rs.nix @@ -11,7 +11,7 @@ rustPlatform.buildRustPackage { pname = "pict-rs"; - version = "0.5.0-rc.1"; + version = "0.5.0-rc.2"; src = ./.; cargoLock = { @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage { nativeBuildInputs = [ stdenv makeWrapper ]; 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_AR = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}ar";