-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 814 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
[package]
name = "rocket-sim"
version = "0.2.0"
edition = "2021"
description = "6DOF multi-stage rocket flight simulation with GNC, orbital mechanics, and visualization"
license = "MIT"
repository = "https://github.com/ZenAlexa/rocket-sim"
homepage = "https://github.com/ZenAlexa/rocket-sim"
keywords = ["rocket", "simulation", "6dof", "orbital-mechanics", "flight-dynamics"]
categories = ["simulation", "science", "aerospace"]
readme = "README.md"
default-run = "rocket-sim"
[dependencies]
nalgebra = "0.34"
eframe = { version = "0.33", optional = true, default-features = false, features = [
"default_fonts",
"glow",
] }
egui_plot = { version = "0.34", optional = true }
[features]
default = []
viz = ["eframe", "egui_plot"]
[[bin]]
name = "rocket-viz"
path = "src/bin/viz.rs"
required-features = ["viz"]