sail-rs 0.3.1

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
14
15
//! Typed sailbox surface: domain models and the HTTP API client.

pub(crate) mod fs;
pub(crate) mod listeners;
pub mod object;
pub mod ssh;
pub mod types;

pub(crate) mod api;

pub use api::UpgradeResult;
pub use fs::{DirEntry, EntryType};
// Shared client-side validation, re-exported for the language bindings.
#[doc(hidden)]
pub use api::{validate_ingress_ports, validate_size_limits, validate_volume_mounts};