rotastellar 0.0.1

Rust SDK for RotaStellar - Space Computing Infrastructure
Documentation
  • Coverage
  • 100%
    6 out of 6 items documented0 out of 2 items with examples
  • Size
  • Source code size: 4.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.16 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 26s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • rotastellar/rotastellar-rust
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bassrehab

rotastellar

Rust SDK for RotaStellar - Space Computing Infrastructure

Plan, simulate, and operate orbital data centers and space intelligence systems.

🚀 Launching Q1 2026

Installation

[dependencies]
rotastellar = "0.0.1"

Overview

RotaStellar provides tools for:

  • Orbital Compute Suite — Plan and simulate space-based data centers
  • Orbital Intelligence — Track, analyze, and monitor orbital activity

Coming Soon

use rotastellar::OrbitalIntel;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = OrbitalIntel::new("api_key")?;

    // Track any satellite
    let iss = client.satellite("ISS").await?;
    let pos = iss.position().await?;
    println!("ISS: {}, {}", pos.lat, pos.lon);

    Ok(())
}

Related Crates

Links

Part of Rota, Inc.

License

MIT License — Copyright (c) 2026 Rota, Inc.