-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (27 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
36 lines (27 loc) · 776 Bytes
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
[package]
name = "spacerocks"
version = "0.2.0-alpha.0"
edition = "2021"
authors = ["Kevin Napier"]
description = "Software for solar system calculations."
repository = "https://github.com/kjnapier/spacerocks"
license = "GPL-3.0"
include = ["/src"]
[dependencies]
nalgebra = "0.32.2"
reqwest = { version = "0.11.4", features = ["json", "blocking"] }
lazy_static = "1.4.0"
phf = {version = "0.11.2", features = ["macros"]}
chrono = "0.4.19"
rayon = "1.9"
memmap2 = "*"
thiserror = "*"
serde = { version = "1.0.197", features = ["derive", "rc"]}
serde_json = "1.0.68"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
rand = "0.8.5"
toml = "*"
dirs = "*"
url = "*"
strsim = "0.11.1"
# plotly = { version = "0.8", features = ["kaleido"] }