-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
40 lines (39 loc) · 1.44 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
[package]
exclude = ["assets/", "CONTRIBUTING.md", "CODE_OF_CONDUCT.md", "SECURITY.md"]
name = "peng_quad"
version = "0.5.2"
edition = "2021"
rust-version = "1.76"
authors = ["Yang Zhou <[email protected]>"]
description = "Peng is a minimal quadrotor pipeline including quadrotor dynamics, IMU simulation, various trajectory planners, PID controller and depth map rendering."
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/peng_quad/latest/peng_quad"
homepage = "https://github.com/makeecat/Peng"
repository = "https://github.com/makeecat/Peng"
categories = [
"science::robotics",
"aerospace::simulation",
"aerospace::unmanned-aerial-vehicles",
"algorithms",
]
keywords = ["quadrotor", "quadcopter", "robotics", "drone", "simulation"]
readme = "README.md"
[profile.dev]
opt-level = 1 # Enable a small amount of optimization in the dev profile.
[profile.dev.package."*"]
opt-level = 3 # Enable a large amount of optimization in the dev profile for dependencies.
[profile.release]
codegen-units = 1 # Compile the entire crate as one unit.
lto = "thin" # Do a second optimization pass over the entire program, including dependencies.
[dependencies]
nalgebra = "0.33.0"
rand = { version = "0.8.5", features = ["rand_chacha"] }
rand_distr = "0.4.3"
rerun = "0.19.0"
thiserror = "1.0.63"
serde = { version = "1.0.209", features = ["derive"] }
serde_yaml = "0.9.34"
env_logger = "0.11.5"
log = "0.4.22"
rayon = "1.10.0"
rand_chacha = "0.3.1"