Skip to content

Commit

Permalink
Bump to version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Samasaur1 committed Feb 11, 2024
1 parent b02fd11 commit bcf1a73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "remote-text-server"
version = "0.1.0"
version = "0.1.2"
edition = "2021"
build = "build.rs"

Expand Down
11 changes: 7 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ./.;

Expand Down Expand Up @@ -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; [ ];
};
}

0 comments on commit bcf1a73

Please sign in to comment.