https://github.com/pfeifferj/pacman-key.rs
Native Rust interface for managing the pacman keyring on Arch Linux
https://github.com/pfeifferj/pacman-key.rs
archlinux keyring pacman
Last synced: 19 days ago
JSON representation
Native Rust interface for managing the pacman keyring on Arch Linux
- Host: GitHub
- URL: https://github.com/pfeifferj/pacman-key.rs
- Owner: pfeifferj
- License: gpl-3.0
- Created: 2026-01-17T15:31:14.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2026-01-17T20:34:57.000Z (2 months ago)
- Last Synced: 2026-01-18T05:39:07.963Z (2 months ago)
- Topics: archlinux, keyring, pacman
- Language: Rust
- Homepage: https://crates.io/crates/pacman-key
- Size: 42 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pacman-key
Native Rust interface for managing the pacman keyring on Arch Linux.
## Installation
```toml
[dependencies]
pacman-key = "0.1"
```
## Usage
```rust
use pacman_key::Keyring;
#[tokio::main]
async fn main() -> pacman_key::Result<()> {
let keyring = Keyring::new();
for key in keyring.list_keys().await? {
println!("{} - {:?}", key.uid, key.validity);
}
Ok(())
}
```
## License
GPL-3.0