[package]
edition = "2021"
rust-version = "1.70"
name = "rotastellar"
version = "0.1.1"
authors = [
"Subhadip Mitra <subhadipmitra@rotastellar.com>",
"RotaStellar Research <research@rotastellar.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for RotaStellar - Space Computing Infrastructure"
homepage = "https://rotastellar.com"
readme = "README.md"
keywords = [
"space",
"orbital",
"satellite",
"data-center",
"space-computing",
]
categories = [
"science",
"simulation",
"aerospace",
]
license = "MIT"
repository = "https://github.com/rotastellar/rotastellar-rust"
[lib]
name = "rotastellar"
path = "src/lib.rs"
[dependencies.lazy_static]
version = "1.4"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
]
optional = true
[dev-dependencies.tokio]
version = "1.0"
features = [
"full",
"test-util",
]
[features]
async = [
"reqwest",
"tokio",
]
default = []