-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
32 lines (26 loc) · 904 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "sgp4-rs"
version = "0.4.1"
authors = ["Nick Pascucci <[email protected]>"]
edition = "2021"
description = "Rust wrapper around the Vallado SGP-4 orbital propagator."
repository = "https://github.com/nsat/sgp4-rs"
keywords = ["sgp4", "orbital-mechanics", "two-line-element", "astrophysics"]
categories = ["api-bindings", "science", "simulation"]
readme = "README.md"
license = "MIT"
build = "build.rs"
links = "static=sgp4"
[features]
# Experimental support for creating TLEs from orbital elements
tlegen = ["dep:argmin", "dep:argmin-math"]
[dependencies]
chrono = { version="0.4.23", default-features=false }
thiserror = "1.0"
uom = "0.36.0"
argmin = { version = "0.8.1", optional = true }
argmin-math = { version = "0.3.0", features = ["ndarray_latest-serde", "nalgebra_latest-serde"], optional = true }
[build-dependencies]
cc = "1.0"
[dev-dependencies]
float-cmp = "0.9"