ds323x-rs/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Normal View History

2018-10-28 09:31:13 +00:00
[package]
name = "ds323x"
2020-07-10 20:32:08 +00:00
version = "0.3.1" # remember to update html_root_url
2018-10-28 09:31:13 +00:00
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 = [
2019-04-08 17:03:28 +00:00
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
2018-10-28 09:31:13 +00:00
]
2020-07-10 20:24:29 +00:00
edition = "2018"
2018-10-28 09:31:13 +00:00
2018-11-16 17:07:02 +00:00
[badges]
travis-ci = { repository = "eldruin/ds323x-rs", branch = "master" }
2018-11-16 18:18:42 +00:00
coveralls = { repository = "eldruin/ds323x-rs", branch = "master", service = "github" }
2018-10-28 09:31:13 +00:00
[dependencies]
2019-05-16 16:50:54 +00:00
embedded-hal = "0.2.3"
2020-05-02 09:36:42 +00:00
rtcc = "0.2"
2018-10-28 09:31:13 +00:00
[dev-dependencies]
2020-05-01 19:15:17 +00:00
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.7"
2018-10-28 09:31:13 +00:00
[profile.release]
lto = true