sgp4 2.3.0

A pure Rust implementation of the SGP4 algorithm for satellite propagation
Documentation
[[bench]]
harness = false
name = "propagate"
path = "benches/propagate.rs"

[dependencies.chrono]
default-features = false
version = "0.4.41"

[dependencies.num-traits]
default-features = false
optional = true
version = "0.2.19"

[dependencies.serde]
default-features = false
optional = true
version = "1.0"

[dependencies.serde_json]
default-features = false
optional = true
version = "1.0"

[dev-dependencies.anyhow]
default-features = false
version = "1.0"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.toml]
version = "0.8.22"

[dev-dependencies.ureq]
features = ["json"]
version = "3.0.11"

[[example]]
name = "advanced"
path = "examples/advanced.rs"

[[example]]
name = "celestrak"
path = "examples/celestrak.rs"

[[example]]
name = "omm"
path = "examples/omm.rs"

[[example]]
name = "space-track"
path = "examples/space-track.rs"

[[example]]
name = "tle"
path = "examples/tle.rs"

[[example]]
name = "tle_afspc"
path = "examples/tle_afspc.rs"

[features]
alloc = []
default = ["alloc", "std", "serde"]
libm = ["dep:num-traits", "num-traits/libm"]
serde = ["alloc", "chrono/serde", "serde/alloc", "serde/derive", "serde_json/alloc"]
std = ["alloc", "anyhow/std", "chrono/std", "serde?/std", "serde_json?/std"]

[lib]
name = "sgp4"
path = "src/lib.rs"

[package]
authors = ["International Centre for Neuromorphic Systems", "Alexandre Marcireau"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["aerospace", "algorithms", "no-std", "parser-implementations", "science"]
description = "A pure Rust implementation of the SGP4 algorithm for satellite propagation"
edition = "2021"
homepage = "https://github.com/neuromorphicsystems/sgp4/"
keywords = ["SGP4", "SDP4", "TLE", "OMM"]
license = "MIT"
name = "sgp4"
readme = "README.md"
repository = "https://github.com/neuromorphicsystems/sgp4/"
resolver = "2"
version = "2.3.0"

[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]

[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true

[[test]]
name = "propagate"
path = "tests/propagate.rs"

[[test]]
name = "test_cases"
path = "tests/test_cases.rs"