Skip to content

Commit 99dd97d

Browse files
committed
Bump to version 0.1.2
1 parent b02fd11 commit 99dd97d

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "remote-text-server"
3-
version = "0.1.0"
3+
version = "0.1.2"
44
edition = "2021"
55
build = "build.rs"
66

default.nix

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@
1111
, makeWrapper
1212
}:
1313

14+
let
15+
package = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package;
16+
in
1417
rustPlatform.buildRustPackage rec {
15-
pname = "remote-text-server";
16-
version = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package.version;
18+
pname = package.name;
19+
version = package.version;
1720

1821
src = ./.;
1922

20-
cargoHash = "sha256-g6QiGH9eqC/mrGzeZOJ5wqm5V5D2xsDm4OOyzmE4sqM=";
23+
cargoHash = "sha256-dGnOVvQ2nk3SHSBYjThkY5kRIBoQKKpCYvuRlPIpDyA=";
2124

2225
nativeBuildInputs = [
2326
pkg-config
@@ -49,7 +52,7 @@ rustPlatform.buildRustPackage rec {
4952
meta = with lib; {
5053
description = "The server-side software for Remote Text";
5154
homepage = "https://github.com/Remote-Text/remote-text-server";
52-
license = with licenses; [ ];
53-
maintainers = with maintainers; [ ];
55+
# license = with licenses; [ ];
56+
# maintainers = with maintainers; [ ];
5457
};
5558
}

0 commit comments

Comments
 (0)