-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (31 loc) · 884 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
34
35
[package]
name = "pcf857x"
version = "0.4.0"
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/pcf857x-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the PCF8574, PCF8574A and PCF8575 I/O expanders."
readme = "README.md"
keywords = ["io", "expander", "i2c", "driver", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/pcf857x-rs"
documentation = "https://docs.rs/pcf857x"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2018"
[dependencies]
embedded-hal = "0.2.5"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.7"
[profile.release]
lto = true
[features]
default = ["unproven"]
unproven = ["embedded-hal/unproven"]