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 21da6c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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
13 changes: 8 additions & 5 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
, 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 = ./.;

cargoHash = "sha256-g6QiGH9eqC/mrGzeZOJ5wqm5V5D2xsDm4OOyzmE4sqM=";
cargoHash = "sha256-iIEtazGy0hiPBjwOIbb84tWdI2YEFMN5qZnCYR7uEUc=";

nativeBuildInputs = [
pkg-config
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 21da6c9

Please sign in to comment.