From cdd4c3ce3fed415a9dd200494f674b6bf54089a9 Mon Sep 17 00:00:00 2001 From: "John W. Terrell" Date: Wed, 14 Apr 2021 16:03:55 -0700 Subject: [PATCH] Change to expose embedded_time to clients. --- Cargo.toml | 2 +- src/lib.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2785d49..905467d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atsam4-hal" -version = "0.1.12" +version = "0.1.13" authors = ["John W. Terrell ", "Jacob Alexander "] edition = "2018" description = "HAL for the ATSAM4 microcontrollers" diff --git a/src/lib.rs b/src/lib.rs index 141ccd3..b5834cf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -76,6 +76,8 @@ pub use atsam4sd32b_pac as pac; #[cfg(feature = "atsam4sd32c")] pub use atsam4sd32c_pac as pac; +pub use embedded_time as time; + use core::mem; pub mod chipid;