-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from bsodmike/wip/next_release_rebase
New public API (v4.0.0)
- Loading branch information
Showing
24 changed files
with
1,476 additions
and
514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: bsodmike |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,23 @@ | ||
[package] | ||
name = "rv8803" | ||
version = "0.4.4" | ||
authors = ["Michael de Silva <[email protected]>"] | ||
edition = "2021" | ||
version = "4.0.0" | ||
authors = ["Michael de Silva <[email protected]>"] | ||
repository = "https://github.com/bsodmike/rv8803-rs" | ||
license = "MIT" | ||
description = "RV8803 driver with support for I2C" | ||
license = "MIT OR Apache-2.0" | ||
description = "RTC clock driver for the rv8803 chip via I2C" | ||
readme = "README.md" | ||
keywords = ["i2c", "driver", "embedded-hal-driver", "rv8803"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
edition = "2021" | ||
rust-version = "1.81.0" | ||
|
||
[features] | ||
default = ["alloc"] | ||
alloc = [] | ||
async = ["embedded-hal-async"] | ||
linux_embedded_hal = ["linux-embedded-hal"] | ||
default = [] | ||
|
||
[dependencies] | ||
log = "0.4" | ||
defmt = { version = "^0.3" } | ||
embedded-hal = { package = "embedded-hal", version = "^1.0" } | ||
embedded-hal-0-2 = { package = "embedded-hal", version = "0.2.7", features = ["unproven"] } | ||
serde = { version = "1", features = ["derive"], default-features = false, optional = true } | ||
embedded-hal-async = { package = "embedded-hal-async", version = "^1.0", optional = true } | ||
linux-embedded-hal = { version = "^0.3", optional = true } | ||
|
||
[dev-dependencies] | ||
i2cdev = "0.5.1" | ||
embedded-hal-async = "1.0.0" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
Oops, something went wrong.