agentknock 0.5.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 exchange;
mod git_sign;
mod pairing;
mod protocol;
mod proxy;
mod secret_use;
mod secrets;
mod ssh_authentication;
mod websocket;

pub use client::{ApplicationInfo, Client, PairingStatus, RequestProgress};
pub use config::ConfigurationError;
pub use git_sign::{
    GitSignChangeStatus, GitSignChangedPath, GitSignHead, GitSignRepository, GitSignRequest,
};
pub use pairing::{PairingRemoveError, PairingSas};
pub use secret_use::{
    DenialReason, EnvironmentVariableOptions, ExecutableMode, RequestError, SecretUseInvocation,
    SecretUseOperation, SecretUseOptions, SecretUseOutput, SecretUseRequest, SshSecretUse,
    StreamKind,
};
pub use secrets::{Secret, SecretUpload, SecretUploadError, SecretUploadMode, Secrets};
pub use ssh_authentication::{SshAuthenticationRequest, SshSignatureAlgorithm};