[package]
edition = "2021"
rust-version = "1.75"
name = "modulino"
version = "0.1.0"
authors = ["Mariusz Jurgielewicz <mordor@mail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hardware-agnostic, no_std Rust driver for Arduino Modulino breakout boards"
documentation = "https://docs.rs/modulino"
readme = "README.md"
keywords = [
"embedded",
"i2c",
"arduino",
"modulino",
"no_std",
]
categories = [
"embedded",
"no-std",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/melastmohican/modulino-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
defmt = ["dep:defmt"]
[lib]
name = "modulino"
path = "src/lib.rs"
[[test]]
name = "buttons_test"
path = "tests/buttons_test.rs"
[[test]]
name = "buzzer_test"
path = "tests/buzzer_test.rs"
[[test]]
name = "distance_test"
path = "tests/distance_test.rs"
[[test]]
name = "joystick_test"
path = "tests/joystick_test.rs"
[[test]]
name = "knob_test"
path = "tests/knob_test.rs"
[[test]]
name = "latch_relay_test"
path = "tests/latch_relay_test.rs"
[[test]]
name = "movement_test"
path = "tests/movement_test.rs"
[[test]]
name = "pixels_test"
path = "tests/pixels_test.rs"
[[test]]
name = "vibro_test"
path = "tests/vibro_test.rs"
[dependencies.defmt]
version = "0.3"
optional = true
[dependencies.embedded-hal]
version = "1.0"
[dependencies.hs3003]
version = "0.1.1"
[dependencies.libm]
version = "0.2"
[dev-dependencies.embedded-hal-mock]
version = "0.11"