sirr-server 2.0.58

Sirr server library — axum HTTP server with redb storage and ChaCha20Poly1305 encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod admin;
pub mod authz;
pub mod dirs;
pub mod handlers;
pub mod server;
pub mod store;
pub mod webhooks;

pub use admin::{AdminRequest, AdminResponse};
pub use authz::{authorize, Action, AuthDecision, Caller};
pub use handlers::{router, AppState};
pub use server::ServerConfig;
pub use store::{KeyRecord, SecretRecord, Store, Visibility};
pub use webhooks::WebhookSender;