-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
60 lines (55 loc) · 1.56 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
[workspace]
resolver = "2"
members = ["anise", "anise-cli", "anise-gui", "anise-py"]
[workspace.package]
version = "0.5.0"
edition = "2021"
authors = ["Christopher Rabotin <[email protected]>"]
description = "ANISE provides a toolkit and files for Attitude, Navigation, Instrument, Spacecraft, and Ephemeris data. It's a modern replacement of NAIF SPICE file."
homepage = "https://nyxspace.com/"
documentation = "https://docs.rs/anise/"
repository = "https://github.com/nyx-space/anise"
keywords = ["attitude", "navigation", "instrument", "spacecraft", "ephemeris"]
categories = ["science", "simulation"]
readme = "README.md"
license = "MPL-2.0"
exclude = [
"cspice*",
"data",
"analysis",
".vscode",
".github",
".venv",
".vscode",
"*.sh",
]
[workspace.dependencies]
hifitime = "4.0.0"
memmap2 = "0.9.4"
crc32fast = "1.4.2"
der = { version = "0.7.8", features = ["derive", "alloc", "real"] }
log = "0.4"
pretty_env_logger = "0.5"
tabled = "=0.16"
const_format = "0.2"
nalgebra = { version = "0.33", default-features = true, features = [
"serde-serialize",
] }
approx = "0.5.1"
zerocopy = { version = "0.8.0", features = ["derive"] }
bytes = "1.6.0"
snafu = { version = "0.8.0", features = ["backtrace"] }
lexical-core = "1.0.1"
heapless = "0.8.0"
rstest = "0.23.0"
pyo3 = { version = "0.22", features = ["multiple-pymethods"] }
pyo3-log = "0.11"
serde = "1"
serde_derive = "1"
serde_dhall = "0.12"
anise = { version = "0.5.0", path = "anise", default-features = false }
[profile.bench]
debug = true
[profile.release]
codegen-units = 1
lto = "thin"