-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (44 loc) · 1.48 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 = "kerbtk-bin"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
color-eyre = "0.6.3"
itertools = "0.12.1"
libm = "0.2.8"
nalgebra = { version = "0.33.0", default-features = false, features = ["serde", "serde-serialize", "std"] }
serde = { version = "1.0.197", features = ["derive", "rc"] }
time = { version = "0.3.34", features = ["default", "formatting", "serde", "parsing"] }
tracing = "0.1.40"
eframe = "0.29.1"
egui = "0.29.1"
egui_extras = "0.29.1"
egui_grid = { path = "egui-grid" }
egui-notify = "0.17.0"
toml = "0.8.12"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
egui-modal = "0.5"
fluent = "0.16.1"
fluent-templates = "0.9.4"
unic-langid = "0.9.5"
ron = "0.8.1"
rfd = { version = "0.15", default-features = false, features = ["gtk3"] }
parking_lot = { version = "0.12.3", features = ["serde"] }
lock_api = "0.4.6"
num_enum = "0.7.2"
nom = "7.1.3"
# egui_plot = "0.27.2"
# egui_form = { version = "0.1.1", features = ["validator_garde"] }
# garde = "0.18.0"
argmin-observer-slog = "0.1.0"
kerbtk = { path = "./lib" }
tokio = { version = "1.38.0", features = ["full"] }
[workspace]
members = [".", "egui-grid", "lib"]
[target.'cfg(windows)'.dependencies]
jlrs = { version = "0.21.1", features = ["async-rt", "tokio-rt", "julia-1-11", "tokio-net", "windows"] }
[target.'cfg(not(windows))'.dependencies]
jlrs = { version = "0.21.1", features = ["async-rt", "tokio-rt", "julia-1-11", "tokio-net"] }
[profile.release]
debug = "full"