sgp4 1.2.0

A pure Rust implementation of the SGP4 algorithm for satellite propagation
Documentation
[[bench]]
harness = false
name = "propagate"
[dependencies.anyhow]
default-features = false
optional = true
version = "1.0"

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

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

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

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

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

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

[features]
alloc = ["anyhow"]
default = ["alloc", "serde", "std"]
libm = ["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"]

[package]
authors = ["International Centre for Neuromorphic Systems", "Alexandre Marcireau"]
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/"
version = "1.2.0"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
lto = true