diff --git a/Cargo.toml b/Cargo.toml index 2661451..19e7c7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ documentation = "https://docs.rs/ltc681x" [dependencies] embedded-hal = { version = "0.2.7", features = ["unproven"] } -heapless = "0.7.10" +heapless = "0.8.0" fixed = "1.15.0" [dev-dependencies] diff --git a/src/lib.rs b/src/lib.rs index d102b1e..129f5ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,6 +47,8 @@ #[cfg(test)] extern crate alloc; +pub use heapless; + pub mod config; #[cfg(feature = "example")] pub mod example;