From 8c811710ace2cf85457b165c138c5a9294c5fdb6 Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 25 Nov 2023 21:27:05 -0600 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- relay.nix | 5 +---- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 07a24de..beb6672 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -384,7 +384,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "ap-relay" -version = "0.3.104" +version = "0.3.105" dependencies = [ "activitystreams", "activitystreams-ext", diff --git a/Cargo.toml b/Cargo.toml index 761a40e..4862d94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ap-relay" description = "A simple activitypub relay" -version = "0.3.104" +version = "0.3.105" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" diff --git a/relay.nix b/relay.nix index 487fa65..2cc07f2 100644 --- a/relay.nix +++ b/relay.nix @@ -1,17 +1,14 @@ { lib , nixosTests -, protobuf , rustPlatform }: rustPlatform.buildRustPackage { pname = "relay"; - version = "0.3.104"; + version = "0.3.105"; src = ./.; cargoLock.lockFile = ./Cargo.lock; - PROTOC = "${protobuf}/bin/protoc"; - PROTOC_INCLUDE = "${protobuf}/include"; RUSTFLAGS = "--cfg tokio_unstable"; nativeBuildInputs = [ ];