sail-rs 0.2.14

Official Rust SDK for Sail: create and drive sailboxes (sandboxed cloud VMs) with lifecycle, streaming exec, file transfer, and ingress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Typed sailbox surface: domain models and the HTTP API client.

pub mod listeners;
pub mod object;
pub mod ssh;
pub mod types;

pub(crate) mod api;

pub use api::{
    normalize_allowlist, validate_autosleep_timeout, validate_ingress_ports, validate_size_limits,
    validate_volume_mounts, UpgradeResult,
};