-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
36 lines (32 loc) · 960 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
36
[package]
name = "eeprom24x"
version = "0.7.2"
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/eeprom24x-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the 24x series serial EEPROMs."
readme = "README.md"
keywords = ["eeprom", "i2c", "driver", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/eeprom24x-rs"
documentation = "https://docs.rs/eeprom24x"
include = [
"**/*.rs",
"/Cargo.toml",
"/CHANGELOG.md",
"/README.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2021"
[features]
defmt-03 = ["dep:defmt", "embedded-hal/defmt-03"]
[dependencies]
embedded-hal = "1"
embedded-storage = "0.3.1"
defmt = { version = "0.3.6", optional = true }
[dev-dependencies]
linux-embedded-hal = "0.4"
embedded-hal-mock = { version = "0.10", features = ["eh1"] }
[profile.release]
lto = true