-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
32 lines (28 loc) · 870 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
[package]
name = "xca9548a"
version = "1.0.0"
authors = ["Diego Barrios Romero <[email protected]>"]
repository = "https://github.com/eldruin/xca9548a-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the TCA954xA and PCA954xA I2C switches/multiplexers."
readme = "README.md"
keywords = ["i2c", "switch", "driver", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/xca9548a-rs"
documentation = "https://docs.rs/xca9548a"
edition = "2018"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
[dependencies]
embedded-hal = "1"
[dev-dependencies]
linux-embedded-hal = "0.4"
embedded-hal-mock = { version = "0.11", default-features = false, features = ["eh1"] }
[profile.release]
lto = true