generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release puffin-0.17, puffin_egui-0.23, puffin-viewer-0.17, puffin-htt…
…p-0.14
- Loading branch information
Showing
9 changed files
with
25 additions
and
17 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "puffin" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Embark <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "Simple instrumentation profiler for games" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "puffin_egui" | ||
version = "0.22.0" | ||
version = "0.23.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Show puffin profiler flamegraph in-game using egui" | ||
edition = "2018" | ||
|
@@ -25,7 +25,7 @@ egui = { version = "0.23.0", default-features = false } | |
indexmap = { version = "1.9.1", features = ["serde"] } | ||
natord = "1.0.9" | ||
once_cell = "1.7" | ||
puffin = { version = "0.16.0", path = "../puffin", features = ["packing"] } | ||
puffin = { version = "0.17.0", path = "../puffin", features = ["packing"] } | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
time = { version = "0.3.17", default-features = false, features = [ | ||
"formatting", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "puffin_http" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = ["Embark <[email protected]>"] | ||
description = "TCP server/client for puffin profiler data" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -16,7 +16,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md"] | |
anyhow = "1.0" | ||
crossbeam-channel = "0.5" | ||
log = "0.4" | ||
puffin = { version = "0.16.0", path = "../puffin", features = [ | ||
puffin = { version = "0.17.0", path = "../puffin", features = [ | ||
"packing", | ||
"lz4", | ||
"serialization", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "puffin_viewer" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["Embark <[email protected]>"] | ||
description = "Viewer GUI for puffin profiler data" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -16,14 +16,14 @@ include = ["**/*.rs", "Cargo.toml", "README.md", "icon.png"] | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
puffin_egui = { version = "0.22.0", path = "../puffin_egui" } | ||
puffin = { version = "0.16.0", path = "../puffin", features = [ | ||
puffin_egui = { version = "0.23.0", path = "../puffin_egui" } | ||
puffin = { version = "0.17.0", path = "../puffin", features = [ | ||
"packing", | ||
"serialization", | ||
"lz4", | ||
"zstd", # Support zstd in order to load old puffin files (before 0.16.0) | ||
] } | ||
puffin_http = { version = "0.13.0", path = "../puffin_http" } | ||
puffin_http = { version = "0.14.0", path = "../puffin_http" } | ||
|
||
argh = "0.1" | ||
eframe = { version = "0.23.0", default-features = false, features = [ | ||
|