[package]
edition = "2021"
name = "rppal_shift"
version = "0.1.0"
authors = ["Malhaar Karandikar <malhaar.karandikar@gmail.com>"]
build = false
exclude = [
".gitignore",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust crate for manipulating shift registers via the GPIO pins on a Raspberry Pi."
homepage = "https://github.com/Malhaar-k/rppal-shift.git"
readme = "README.md"
keywords = [
"raspberry",
"pi",
"rpi",
"gpio",
"shift_register",
]
license = "MIT"
repository = "https://github.com/Malhaar-k/rppal-shift.git"
resolver = "3"
[lib]
name = "rppal_shift"
path = "src/lib.rs"
[[example]]
name = "blink"
path = "examples/blink.rs"
[[example]]
name = "multiblink"
path = "examples/multiblink.rs"
[[example]]
name = "toggle_by_pin"
path = "examples/toggle_by_pin.rs"
[dependencies.rppal]
version = "0.22.1"
[profile.release]
opt-level = 3
lto = true
panic = "abort"