-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
131 lines (116 loc) · 3.13 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[package]
name = "nyx-space"
build = "build.rs"
version = "2.0.0-rc"
edition = "2021"
authors = ["Christopher Rabotin <[email protected]>"]
description = "A high-fidelity space mission toolkit, with orbit propagation, estimation and some systems engineering"
homepage = "https://nyxspace.com"
documentation = "https://docs.rs/nyx-space/"
repository = "https://github.com/nyx-space/nyx"
keywords = ["space", "mission", "design", "orbit", "estimation"]
categories = ["science", "simulation", "aerospace", "science::robotics"]
readme = "README.md"
license = "AGPL-3.0-or-later"
exclude = [
".cargo/",
".github/",
".venv/",
".vscode/",
"data/",
"output_data/",
"*.parquet",
"pyproject.toml",
"firebase.json",
".dockerignore",
"Dockerfile*",
"rustfmt.toml",
"tests/GMAT_scripts/*",
"*.png",
"*.pca",
]
[badges]
maintenance = { status = "actively-developed" }
gitlab = { repository = "nyx-space/nyx", branch = "master" }
[dependencies]
nalgebra = "0.33"
log = "0.4"
hifitime = "4.0.0"
anise = "0.5.0"
flate2 = { version = "1.0", features = [
"rust_backend",
], default-features = false }
serde = "1.0"
serde_derive = "1.0"
csv = "1"
hyperdual = "1.3.0"
bytes = "1.0"
rand = "0.8"
rand_distr = "0.4"
regex = "1.5"
rayon = "1.6"
lazy_static = "1.4.0"
approx = "0.5"
rand_pcg = "0.3"
indicatif = { version = "0.17", features = ["rayon"] }
rstats = "2.0.1"
parquet = { version = "53.0.0", default-features = false, features = [
"arrow",
"zstd",
] }
arrow = "53.0.0"
shadow-rs = { version = "0.36.0", default-features = false }
serde_yml = "0.0.12"
whoami = "1.3.0"
either = { version = "1.8.1", features = ["serde"] }
num = "0.4.0"
enum-iterator = "2.0.0"
getrandom = { version = "0.2", features = ["js"] }
typed-builder = "0.20.0"
snafu = { version = "0.8.3", features = ["backtrace"] }
serde_dhall = "0.12"
indexmap = {version = "2.6.0", features = ["serde"]}
[dev-dependencies]
polars = { version = "0.43.1", features = ["parquet"] }
rstest = "0.23.0"
pretty_env_logger = "0.5"
toml = "0.8.14"
[build-dependencies]
shadow-rs = "0.36.0"
[features]
default = []
# python = ["pyo3", "pyo3-log", "hifitime/python", "numpy", "pythonize"]
python = []
[lib]
crate-type = ["cdylib", "rlib"]
name = "nyx_space"
[target.x86_64-unknown-linux-gnu]
# For flamegraph -- https://github.com/flamegraph-rs/flamegraph
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[[example]]
name = "01_orbit_prop"
path = "examples/01_orbit_prop/main.rs"
doc-scrape-examples = true
[[example]]
name = "02_jwst"
path = "examples/02_jwst_covar_monte_carlo/main.rs"
doc-scrape-examples = true
[[example]]
name = "03_geo_drift"
path = "examples/03_geo_analysis/drift.rs"
doc-scrape-examples = true
[[example]]
name = "03_geo_raise"
path = "examples/03_geo_analysis/raise.rs"
doc-scrape-examples = true
[[example]]
name = "03_geo_sk"
path = "examples/03_geo_analysis/stationkeeping.rs"
doc-scrape-examples = true
[[example]]
name = "04_lro_od"
path = "examples/04_lro_od/main.rs"
doc-scrape-examples = true