Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
rftrace-frontend = "0.2"
rftrace = "0.3"
rftrace-frontend = "0.3"
```

Ensure that frame pointers are generated! Debug build always seem to have them enabled.
Expand Down Expand Up @@ -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.2"
rftrace = "0.3"
```

#### Any other kernel
Expand Down
4 changes: 2 additions & 2 deletions examples/hermitrust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ license = "MIT OR Apache-2.0"
edition = "2018"

[dependencies]
rftrace = { version = "0.2", path="../../rftrace" }
rftrace-frontend = { version = "0.2", path="../../rftrace-frontend" }
rftrace = { version = "0.3", path="../../rftrace" }
rftrace-frontend = { version = "0.3", path="../../rftrace-frontend" }

[target.'cfg(target_os = "hermit")'.dependencies]
hermit = { version = "0.8" }
4 changes: 2 additions & 2 deletions examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ license = "MIT OR Apache-2.0"
edition = "2018"

[dependencies]
rftrace = { version = "0.2", path="../../rftrace" }
rftrace-frontend = { version = "0.2", path="../../rftrace-frontend" }
rftrace = { version = "0.3", path="../../rftrace" }
rftrace-frontend = { version = "0.3", path="../../rftrace-frontend" }
4 changes: 2 additions & 2 deletions rftrace-frontend-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rftrace-frontend-ffi"
version = "0.2.3"
version = "0.3.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand All @@ -18,4 +18,4 @@ repository = "https://github.com/hermit-os/rftrace"
crate-type = ["staticlib"]

[dependencies]
rftrace-frontend = {path="../rftrace-frontend", version="0.2"}
rftrace-frontend = {path="../rftrace-frontend", version="0.3"}
2 changes: 1 addition & 1 deletion rftrace-frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rftrace-frontend"
version = "0.2.3"
version = "0.3.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion rftrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rftrace"
version = "0.2.3"
version = "0.3.0"
authors = [
"Martin Kröning <[email protected]>",
"Thomas Lambertz <[email protected]>",
Expand Down