From bcf1a734daa57ce6590d67422624140dbd95e37f Mon Sep 17 00:00:00 2001 From: Sam <30577766+Samasaur1@users.noreply.github.com> Date: Sun, 11 Feb 2024 02:06:57 -0800 Subject: [PATCH] Bump to version 0.1.2 --- Cargo.toml | 2 +- default.nix | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 190afa5..6fd1178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remote-text-server" -version = "0.1.0" +version = "0.1.2" edition = "2021" build = "build.rs" diff --git a/default.nix b/default.nix index 38d1847..11f0cab 100644 --- a/default.nix +++ b/default.nix @@ -11,9 +11,12 @@ , makeWrapper }: +let + package = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package; +in rustPlatform.buildRustPackage rec { - pname = "remote-text-server"; - version = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package.version; + pname = package.name; + version = package.version; src = ./.; @@ -49,7 +52,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "The server-side software for Remote Text"; homepage = "https://github.com/Remote-Text/remote-text-server"; - license = with licenses; [ ]; - maintainers = with maintainers; [ ]; + # license = with licenses; [ ]; + # maintainers = with maintainers; [ ]; }; }