gitextract_s5a7sh2t/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGES.md ├── COPYRIGHT ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── README.systemd.md ├── build.rs ├── examples/ │ ├── pizauth-state-custom.service │ ├── pizauth.conf │ └── systemd/ │ └── pizauth.conf ├── lib/ │ └── systemd/ │ └── user/ │ ├── pizauth-state-age.service │ ├── pizauth-state-creds.service │ ├── pizauth-state-gpg-passphrase.service │ ├── pizauth-state-gpg.service │ └── pizauth.service ├── pizauth.1 ├── pizauth.conf.5 ├── share/ │ ├── bash/ │ │ └── completion.bash │ ├── fish/ │ │ └── pizauth.fish │ └── zsh/ │ └── _pizauth ├── src/ │ ├── compat/ │ │ ├── daemon.rs │ │ └── mod.rs │ ├── config.l │ ├── config.rs │ ├── config.y │ ├── config_ast.rs │ ├── main.rs │ ├── server/ │ │ ├── eventer.rs │ │ ├── http_server.rs │ │ ├── mod.rs │ │ ├── notifier.rs │ │ ├── refresher.rs │ │ ├── request_token.rs │ │ └── state.rs │ ├── shell_cmd.rs │ └── user_sender.rs └── tests/ └── basic.rs