diff --git a/README.md b/README.md index 651df5a..3ea7a50 100755 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ There are 4 usage examples in `/examples`: Rust and C, both on normal Linux x64 To use rftrace, add both the backend and a frontend to your dependencies. ```toml [dependencies] -rftrace = "0.1" -rftrace-frontend = "0.1" +rftrace = "0.2" +rftrace-frontend = "0.2" ``` Ensure that frame pointers are generated! Debug build always seem to have them enabled. @@ -120,7 +120,7 @@ An example with makefile, which does all the needed trace gathering, timing conv ```toml [dependencies] hermit = { version = "0.8", default-features = false, features = ["instrument"] } -rftrace = "0.1" +rftrace = "0.2" ``` #### Any other kernel diff --git a/examples/hermitrust/Cargo.toml b/examples/hermitrust/Cargo.toml index ea5e339..6276f48 100755 --- a/examples/hermitrust/Cargo.toml +++ b/examples/hermitrust/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "rftrace-hermit-rs-test" -version = "0.1.0" authors = [ "Martin Kröning ", "Thomas Lambertz ", @@ -10,7 +9,7 @@ edition = "2018" [dependencies] rftrace = { version = "0.2.0", path="../../rftrace" } -rftrace-frontend = { version = "0.1.0", path="../../rftrace-frontend" } +rftrace-frontend = { version = "0.2.0", path="../../rftrace-frontend" } [target.'cfg(target_os = "hermit")'.dependencies] hermit = { version = "0.8" } diff --git a/examples/rust/Cargo.toml b/examples/rust/Cargo.toml index 1eb0943..a2e954e 100755 --- a/examples/rust/Cargo.toml +++ b/examples/rust/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "rftrace-rs-test" -version = "0.1.0" authors = [ "Martin Kröning ", "Thomas Lambertz ", @@ -10,4 +9,4 @@ edition = "2018" [dependencies] rftrace = { version = "0.2.0", path="../../rftrace" } -rftrace-frontend = { version = "0.1.0", path="../../rftrace-frontend" } +rftrace-frontend = { version = "0.2.0", path="../../rftrace-frontend" } diff --git a/rftrace-frontend-ffi/Cargo.toml b/rftrace-frontend-ffi/Cargo.toml index e483609..d3f8561 100644 --- a/rftrace-frontend-ffi/Cargo.toml +++ b/rftrace-frontend-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rftrace-frontend-ffi" -version = "0.1.0" +version = "0.2.0" authors = [ "Martin Kröning ", "Thomas Lambertz ", @@ -18,4 +18,4 @@ repository = "https://github.com/hermit-os/rftrace" crate-type = ["staticlib"] [dependencies] -rftrace-frontend = {path="../rftrace-frontend", version="0.1"} +rftrace-frontend = {path="../rftrace-frontend", version="0.2"} diff --git a/rftrace-frontend/Cargo.toml b/rftrace-frontend/Cargo.toml index bc6b7c6..4639006 100644 --- a/rftrace-frontend/Cargo.toml +++ b/rftrace-frontend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rftrace-frontend" -version = "0.1.0" +version = "0.2.0" authors = [ "Martin Kröning ", "Thomas Lambertz ", @@ -18,5 +18,5 @@ repository = "https://github.com/hermit-os/rftrace" crate-type = ['rlib'] [dependencies] -byteorder = "~1.3.2" +byteorder = "1" cfg-if = "1"