Skip to content

Commit 13787e6

Browse files
committed
forgot a trait bound
1 parent 15b65f9 commit 13787e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "ncp5623"
33
description = "Simple driver for the ON Semiconductor NCP5623 I2C RGB LED driver"
44
authors = ["Jason Scatena <jason.scatena@gmail.com>"]
55
repository = "https://github.com/jscatena88/ncp5623"
6-
version = "0.1.2"
6+
version = "0.1.3"
77
edition = "2021"
88
categories = [
99
"embedded",

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub struct NCP5623<I> {
6565
impl<I> NCP5623<I>
6666
where
6767
I: Write,
68-
<I as Write>::Error: core::fmt::Debug + PartialEq,
68+
<I as Write>::Error: core::fmt::Debug,
6969
{
7070
pub fn new_default_address(i2c: I) -> Self {
7171
Self::new(i2c, Address::Default)

0 commit comments

Comments
 (0)