agentknock 0.2.0

Developer secrets on your phone, provided only to approved commands.
Documentation
//! Agentknock is primarily a command-line application.
//!
//! Start with the [Agentknock README] for installation, usage, and project
//! documentation.
//!
//! The public items below form the unstable Agentknock embedding API. Direct
//! use of this API is not currently recommended.
//!
//! [Agentknock README]: https://docs.rs/crate/agentknock/latest

mod client;
mod config;
mod crypto;
mod git_sign;
mod pairing;
mod protocol;
mod proxy;
mod secret_use;
mod secrets;
mod websocket;

pub use client::{ApplicationInfo, Client, PairingStatus};
pub use config::ConfigurationError;
pub use git_sign::{GitSignProgress, GitSignRequest};
pub use pairing::{PairingProgress, PairingRemoveError, PairingSas};
pub use secret_use::{
    DenialReason, ExecutableMode, RequestError, SecretUseInvocation, SecretUseOperation,
    SecretUseOutput, SecretUseProgress, SecretUseRequest, SshSecretUse, StreamKind,
};
pub use secrets::{
    Secret, SecretListProgress, SecretUpload, SecretUploadError, SecretUploadMode,
    SecretUploadProgress, Secrets,
};