update readme and add action
Some checks failed
Release crate / Publish to crates.io and create GitHub Release (release) Failing after 1m48s

This commit is contained in:
2025-11-10 22:15:47 +01:00
parent 29b34fa3f0
commit 9fea209695
5 changed files with 107 additions and 9 deletions

18
shell.nix Normal file
View File

@@ -0,0 +1,18 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustPackages.clippy
pkg-config
gnupg
pinentry
pinentry-curses
];
shellHook = ''
# Export GPG_TTY so pinentry-curses can attach to the current terminal
export GPG_TTY=$(tty)
'';
}