version 1.0.0

main
xenofem 2023-07-05 02:22:09 -04:00
parent 8f74af7c7b
commit 22d2686343
3 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@ -1137,7 +1137,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "screencap-bot"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"anyhow",
"dotenvy",

View File

@ -1,6 +1,6 @@
[package]
name = "screencap-bot"
version = "0.1.0"
version = "1.0.0"
edition = "2021"
authors = ["xenofem <xenofem@xeno.science>"]
license = "MIT"

View File

@ -10,8 +10,9 @@
nativeBuildInputs = with pkgs; [ rustc cargo pkgconfig clang ];
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
};
pname = "screencap-bot";
version = "0.1";
cargoData = builtins.fromTOML (builtins.readFile ./Cargo.toml);
pname = cargoData.package.name;
version = cargoData.package.version;
in rec {
packages.x86_64-linux."${pname}-unwrapped" = pkgs.rustPlatform.buildRustPackage ({
inherit pname version;