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 c9279b0..b1fd606 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -46,6 +46,8 @@ extern crate alloc; +pub use heapless; + pub mod config; #[cfg(feature = "example")] pub mod example;