-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (47 loc) · 1.21 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
[package]
name = "yahs"
description = "Yet Another HAB Simulator"
authors = ["Philip Linden <[email protected]>"]
version = "0.2.0"
edition = "2021"
readme = "README.md"
license-file = "LICENSE"
[features]
default = ["gui"]
gui = [
"egui",
"egui_extras",
"egui_plot",
"eframe",
"emath",
"rfd",
]
[dependencies]
pretty_env_logger = "0.5.0"
libm = "0.2.1"
toml = "0.8.10"
clap = { version = "4.1", default-features = false, features = [
"derive",
"std",
"help",
"usage",
"error-context",
"suggestions",
] }
csv = "1.2.1"
serde = { version = "1.0.196", features = ["derive"] }
log = { version = "0.4.20", features = ["release_max_level_debug"] }
egui = { version = "0.26.2", features = ["log", "serde"], optional = true }
egui_plot = { version = "0.26.2", features = ["serde"], optional = true }
eframe = { version = "0.26.2", features = ["persistence"], optional = true }
emath = { version = "0.26.2", optional = true }
egui_extras = { version = "0.26.2", features = [
"chrono",
"datepicker",
"file",
], optional = true }
rfd = { version = "0.14.0", optional = true }
ultraviolet = { version = "0.9.2", features = ["serde"] }
[[bin]]
name = "yahs"
path = "src/main.rs"