-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With new fiber support from #16
- Loading branch information
Showing
3 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
[package] | ||
name = "superluminal-perf" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Superluminal Performance API for adding user events to profiler captures" | ||
authors = ["Embark <[email protected]>", "Johan Andersson <[email protected]>"] | ||
authors = [ | ||
"Embark <[email protected]>", | ||
"Johan Andersson <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/EmbarkStudios/superluminal-perf-rs" | ||
edition = "2018" | ||
|
@@ -11,16 +14,14 @@ categories = ["development-tools::profiling", "api-bindings"] | |
readme = "README.md" | ||
|
||
[workspace] | ||
members = [ | ||
"sys" | ||
] | ||
members = ["sys"] | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
superluminal-perf-sys = { version = "0.1.1", path = "sys" } | ||
superluminal-perf-sys = { version = "0.3.0", path = "sys" } | ||
|
||
[features] | ||
default = ["enable"] | ||
enable = [] | ||
enable = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
[package] | ||
name = "superluminal-perf-sys" | ||
version = "0.1.2" | ||
version = "0.3.0" | ||
description = "Superluminal Performance C API bindings" | ||
authors = ["Embark <[email protected]>", "Johan Andersson <[email protected]>"] | ||
authors = [ | ||
"Embark <[email protected]>", | ||
"Johan Andersson <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/EmbarkStudios/superluminal-perf-rs" | ||
edition = "2018" | ||
|