| Crates.io | rotastellar |
| lib.rs | rotastellar |
| version | 0.0.1 |
| created_at | 2026-01-20 17:47:30.179966+00 |
| updated_at | 2026-01-20 17:47:30.179966+00 |
| description | Rust SDK for RotaStellar - Space Computing Infrastructure |
| homepage | https://rotastellar.com |
| repository | https://github.com/rotastellar/rotastellar-rust |
| max_upload_size | |
| id | 2057101 |
| size | 5,287 |
Rust SDK for RotaStellar - Space Computing Infrastructure
Plan, simulate, and operate orbital data centers and space intelligence systems.
🚀 Launching Q1 2026
[dependencies]
rotastellar = "0.0.1"
RotaStellar provides tools for:
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(())
}
MIT License — Copyright (c) 2026 Rota, Inc.