gnupg-rs 0.1.0

GnuPG interface for rust
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    let c = std::process::Command::new("sh")
        .args(["-c", "which gpg"])
        .output()
        .expect("process creation failed");

    let out = String::from_utf8_lossy(&c.stdout).to_string();

    assert_ne!(out, String::new());
}