-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 856 Bytes
/
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
# Cargo.toml
[package]
name = "free-flight-stabilization"
version = "0.1.0"
authors = [
"Brendan Sechter <sgeos@hotmail.com>",
"AeroRust <aerospace.rust@gmail.com>",
]
categories = [
"aerospace::drones",
"aerospace::unmanned-aerial-vehicles",
"algorithms",
"embedded",
"no-std::no-alloc",
]
description = "PID flight stabilization functions. no_std, no-alloc."
edition = "2021"
keywords = [
"automation",
"control-systems",
"embedded",
"pid",
]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/AeroRust/free-flight-stabilization"
rust-version = "1.71"
[dependencies]
num-traits = "0.2.18"
piddiy = "0.1.1"
[dev-dependencies]
fixed = { version = "1.27.0", features = ["num-traits"] }
libc = "0.2.154"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]