diff --git a/Cargo.lock b/Cargo.lock index d5e8ead..6ff6d68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18,7 +18,7 @@ dependencies = [ [[package]] name = "ruspiro-interrupt" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ruspiro-interrupt-macros 0.1.0", "ruspiro-register 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -30,7 +30,7 @@ name = "ruspiro-interrupt-macros" version = "0.1.0" dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -53,7 +53,7 @@ dependencies = [ [[package]] name = "syn" -version = "0.15.42" +version = "0.15.43" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", @@ -72,5 +72,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum ruspiro-lock 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5655fe05fe4b90dc84698371cf0d7db487c6826933017ae199d908cb2a96e9bc" "checksum ruspiro-register 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b980f28994eba9f2f2a7e539acdc2daf7903cd38dd173c24153d4a2a69f23414" "checksum ruspiro-singleton 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "03fbde4c1f1bc3a4cc88ad0e8f33e20ff7397a87a11b9856edea412e4bef863d" -"checksum syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)" = "eadc09306ca51a40555dd6fc2b415538e9e18bc9f870e47b1a524a79fe2dcf5e" +"checksum syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)" = "ee06ea4b620ab59a2267c6b48be16244a3389f8bfa0986bdd15c35b890b00af3" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" diff --git a/Cargo.toml b/Cargo.toml index 7216171..7bd92bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "ruspiro-interrupt" authors = ["André Borrmann "] -version = "0.1.0" # remember to update html_root_url +version = "0.1.1" # remember to update html_root_url description = "Providing a simple and convinient way to implement interrupt handler for Raspberry Pi interrupts." license = "Apache-2.0" -repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v0.1.0" -documentation = "https://docs.rs/ruspiro-interrupt/0.1.0" +repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v0.1.1" +documentation = "https://docs.rs/ruspiro-interrupt/0.1.1" readme = "README.md" keywords = ["RusPiRo", "baremetal", "raspberrypi", "interrupt"] categories = ["no-std", "embedded"] diff --git a/README.md b/README.md index 7e8c5a8..9f6a119 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ script providing all the necessary linker symbols and entrypoints calling into t To use the crate just add the following dependency to your ``Cargo.toml`` file: ``` [dependencies] -ruspiro-interrupt = "0.1.0" +ruspiro-interrupt = "0.1.1" ``` Once done the access to the features/attribute of the interrupt crate is available in your rust files like so: diff --git a/src/lib.rs b/src/lib.rs index 9ccff36..30c138b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ * Author: André Borrmann * License: Apache License 2.0 **********************************************************************************************************************/ -#![doc(html_root_url = "https://docs.rs/ruspiro-interrupt/0.1.0")] +#![doc(html_root_url = "https://docs.rs/ruspiro-interrupt/0.1.1")] #![no_std] #![feature(asm)] #![feature(linkage)] @@ -26,7 +26,7 @@ //! // implement stuff that shall be executed if the interrupt is raised... //! // be careful when this code uses spinlocks as this might lead to dead-locks if the //! // executing code interrupted currently helds a lock the code inside this handler tries to aquire the same one -//! println('timer interrupt raised'); +//! println!("timer interrupt raised"); //! } //! //! fn demo() {