19 lines
465 B
TOML
19 lines
465 B
TOML
[package]
|
|
name = "mcp23017"
|
|
version = "1.1.0"
|
|
description = "A rust driver for the MCP23017 (16-Bit I2C I/O Expander with Serial Interface)"
|
|
authors = ["Luca Zulian <lucagiuggia@gmail.com>"]
|
|
categories = ["embedded", "hardware-support", "no-std"]
|
|
keywords = ["hal", "IO"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/circuitry-maker/mcp23017"
|
|
edition = "2018"
|
|
exclude = [
|
|
"docs/",
|
|
"docs/*",
|
|
]
|
|
|
|
[dependencies]
|
|
embedded-hal = "0.2.3"
|