You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
[package] |
|
name = "ds323x" |
|
version = "0.2.0" |
|
authors = ["Diego Barrios Romero <eldruin@gmail.com>"] |
|
repository = "https://github.com/eldruin/ds323x-rs" |
|
license = "MIT OR Apache-2.0" |
|
description = "Platform-agnostic Rust driver for the DS3231, DS3232 and DS3234 extremely accurate real-time clocks (RTC)." |
|
readme = "README.md" |
|
keywords = ["rtc", "clock", "real-time", "driver", "embedded-hal-driver"] |
|
categories = ["embedded", "hardware-support", "no-std"] |
|
homepage = "https://github.com/eldruin/ds323x-rs" |
|
documentation = "https://docs.rs/ds323x" |
|
include = [ |
|
"**/*.rs", |
|
"Cargo.toml", |
|
"README.md", |
|
"CHANGELOG.md", |
|
"LICENSE-MIT", |
|
"LICENSE-APACHE", |
|
] |
|
|
|
[badges] |
|
travis-ci = { repository = "eldruin/ds323x-rs", branch = "master" } |
|
coveralls = { repository = "eldruin/ds323x-rs", branch = "master", service = "github" } |
|
maintenance = { status = "actively-developed" } |
|
|
|
[dependencies] |
|
embedded-hal = "0.2" |
|
|
|
[dev-dependencies] |
|
linux-embedded-hal = "0.2" |
|
embedded-hal-mock = "0.4" |
|
|
|
[profile.release] |
|
lto = true
|
|
|