-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
33 lines (30 loc) · 893 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
[package]
name = "navigator-rs"
version = "0.5.0"
edition = "2021"
license = "MIT"
description = "This crate serves as the entry point for embedding applications using Rust on Blue Robotics's Navigator"
homepage = "https://bluerobotics.com/store/comm-control-power/control/navigator/"
repository = "https://github.com/bluerobotics/navigator-rs"
categories = ["science::robotics", "embedded", "hardware-support"]
keywords = ["BlueRobotics", "embedded", "navigator", "robotics", "ROV"]
readme = "README.md"
[dependencies]
ads1x1x = "0.2.2"
ak09915_rs= "0.2.0"
approx = "0.5.1"
bmp280 = "0.4.0"
dummy-pin = "0.1.1"
embedded-hal = "0.2.7"
icm20689 = "0.1.1"
linux-embedded-hal = "0.3.2"
log = "0.4.19"
nb = "1.1.0"
pwm-pca9685 = "0.3.1"
sk6812_rpi = "0.1"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
rand = "0.8.5"
[[bench]]
name = "bench"
harness = false