[package]
edition = "2024"
rust-version = "1.90"
name = "lox-core"
version = "0.1.0-alpha.6"
authors = ["Helge Eichhorn and the lox-space contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Common data types and utilities for the Lox ecosystem"
homepage = "https://github.com/lox-space/lox"
readme = "README.md"
keywords = [
"lox",
"astrodynamics",
"orbital-dynamics",
"mission-analysis",
]
categories = [
"aerospace",
"science",
]
license = "MPL-2.0"
repository = "https://github.com/lox-space/lox"
[features]
chrono = ["dep:chrono"]
serde = [
"dep:serde",
"glam/serde",
]
[lib]
name = "lox_core"
path = "src/lib.rs"
[[test]]
name = "anomaly_conversions"
path = "tests/anomaly_conversions.rs"
[dependencies.chrono]
version = "0.4.43"
optional = true
[dependencies.fast_polynomial]
version = "0.3.0"
[dependencies.glam]
version = "0.30.9"
[dependencies.lox-test-utils]
version = "0.1.0-alpha.5"
features = ["derive"]
[dependencies.num]
version = "0.4.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
optional = true
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.rstest]
version = "0.26.1"