cellos 0.5.5

CellOS — narrow-authority Rust execution cells with kubectl-style CLI. `cargo install cellos` ships the cellctl operator tool. cellos-server and cellos-supervisor publish separately.
1
2
3
4
5
6
7
8
9
//! `cellos` meta-crate binary entrypoint.
//!
//! Produces a single `cellctl` binary backed by [`cellos_ctl::run`]. The
//! existence of this crate is purely so `cargo install cellos` works as
//! the canonical install command; all CLI logic lives in `cellos-ctl`.

fn main() {
    cellos_ctl::run();
}