-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (60 loc) · 1.5 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "uf-ahrs"
version = "0.2.1"
edition = "2024"
rust-version = "1.91.1"
description = "uf-ahrs library for attitude and heading estimation using gyroscope, accelerometer and magnetometer."
keywords = ["ahrs", "imu", "madgwick", "mahony", "vqf"]
categories = ["embedded", "no-std"]
authors = ["Nickolai Novik <nickolainovik@gmail.com>"]
license = "Apache-2.0"
homepage = "https://github.com/jettify/uf-ahrs"
repository = "https://github.com/jettify/uf-ahrs"
readme = "README.md"
include = [
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
"/src/**",
"/tests/**",
"/examples/**/*.rs",
]
[dependencies]
idsp = "0.22.0"
libm = "0.2.15"
nalgebra = { version = "0.35", default-features = false, features = ["libm"] }
[dev-dependencies]
approx = "0.5.1"
rstest = "0.26.1"
[lints.clippy]
unwrap_used = "forbid"
expect_used = "forbid"
panic = "deny"
todo = "warn"
exit = "deny"
try_err = "deny"
unimplemented = "deny"
print_stdout = "warn"
print_stderr = "warn"
must_use_candidate = "allow"
allow_attributes_without_reason = "deny"
allow_attributes = "deny"
dbg_macro = "warn"
infinite_loop = "warn"
map_err_ignore = "deny"
rest_pat_in_fully_bound_structs = "warn"
return_and_then = "warn"
undocumented_unsafe_blocks = "deny"
string_slice = "warn"
unneeded_field_pattern = "warn"
missing_assert_message = "warn"
redundant_type_annotations = "warn"
indexing_slicing = "deny"
let_underscore_must_use = "deny"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = false