Browse Source

Bump version, enable tokio_unstable for console

asonix 8 months ago
parent
commit
6714fe48ed
4 changed files with 5 additions and 4 deletions
  1. 1 1
      .cargo/config
  2. 1 1
      Cargo.lock
  3. 1 1
      Cargo.toml
  4. 2 1
      relay.nix

+ 1 - 1
.cargo/config

@@ -1,2 +1,2 @@
 [build]
-# rustflags = ["--cfg", "tokio_unstable"]
+rustflags = ["--cfg", "tokio_unstable"]

+ 1 - 1
Cargo.lock

@@ -383,7 +383,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
 
 [[package]]
 name = "ap-relay"
-version = "0.3.101"
+version = "0.3.102"
 dependencies = [
  "activitystreams",
  "activitystreams-ext",

+ 1 - 1
Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "ap-relay"
 description = "A simple activitypub relay"
-version = "0.3.101"
+version = "0.3.102"
 authors = ["asonix <asonix@asonix.dog>"]
 license = "AGPL-3.0"
 readme = "README.md"

+ 2 - 1
relay.nix

@@ -6,12 +6,13 @@
 
 rustPlatform.buildRustPackage {
   pname = "relay";
-  version = "0.3.101";
+  version = "0.3.102";
   src = ./.;
   cargoLock.lockFile = ./Cargo.lock;
 
   PROTOC = "${protobuf}/bin/protoc";
   PROTOC_INCLUDE = "${protobuf}/include";
+  RUSTFLAGS = "--cfg tokio_unstable";
 
   nativeBuildInputs = [ ];