Crates.io | gpgme |
lib.rs | gpgme |
version | 0.11.0 |
source | src |
created_at | 2015-06-11 04:27:26.352161 |
updated_at | 2022-11-01 09:22:09.540075 |
description | GPGme bindings for Rust |
homepage | |
repository | https://github.com/gpg-rs/gpgme |
max_upload_size | |
id | 2356 |
size | 329,720 |
GPGME bindings for Rust.
To use the crate, add it to your depedencies:
$ cargo add gpgme
These crates require the gpgme library (version 1.13 or later) and its development files to be installed. The build script uses the system-deps crate to attempt to locate them (or the registry on Windows).
On Debian/Ubuntu based systems:
$ sudo apt-get install libgpgme11-dev
On Fedora/RHEL based systems:
$ sudo dnf install gpgme-devel
On MacOS systems:
$ brew install gnupg
On Windows systems, download and install the official Gpg4win installer. Only
the i686-pc-windows-gnu
target is supported.
NOTE: These crates also depend on the gpg-error crate which has its own requirements.
Some simple example programs based on those in the GPGME sources can be found in examples.
They can be run with cargo:
$ cargo run --example keylist --
keyid : 89ABCDEF01234567
fpr : 0123456789ABCDEF0123456789ABCDEF01234567
caps : esc
flags :
userid 0: Example <example@example.org>
valid 0: Unknown
These crates are licensed under the LGPL-2.1 license.