Update op puffin 0.14.0 (#2257)

This commit is contained in:
Emil Ernerfeldt 2022-11-07 12:37:37 +01:00 committed by GitHub
parent eec18290a4
commit 8c76b8caff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 12 deletions

13
Cargo.lock generated
View file

@ -2760,9 +2760,9 @@ checksum = "2f61dcf0b917cd75d4521d7343d1ffff3d1583054133c9b5cbea3375c703c40d"
[[package]] [[package]]
name = "puffin" name = "puffin"
version = "0.13.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b40725b2702b9c660938b8d9c56978091252374cc50d73a83b59695b8d32ec03" checksum = "796a1b7d7d0ec984dde24615178cbd14dc697ea4cdcddfd1fee9a5f87135f9e8"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",
@ -2776,9 +2776,9 @@ dependencies = [
[[package]] [[package]]
name = "puffin_http" name = "puffin_http"
version = "0.10.0" version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "784f1952bda562ec8b76651f0c879b61eb02eaf20fe9acd2a8ca69b4898b13fd" checksum = "77dae1a51a8887f161ae17809ec4159bb3fbc8be60d12947039fa063cf211f1b"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"crossbeam-channel", "crossbeam-channel",
@ -3063,11 +3063,12 @@ dependencies = [
[[package]] [[package]]
name = "ruzstd" name = "ruzstd"
version = "0.2.4" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cada0ef59efa6a5f4dc5e491f93d9f31e3fc7758df421ff1de8a706338e1100" checksum = "ffae8df4aa221781b715c27bbed0fac16b6f1e2643efb7af8a24dfc78d444493"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"thiserror",
"twox-hash", "twox-hash",
] ]

View file

@ -89,7 +89,7 @@ directories-next = { version = "2", optional = true }
egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true, features = [ egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true, features = [
"winit", "winit",
] } ] }
puffin = { version = "0.13", optional = true } puffin = { version = "0.14", optional = true }
wgpu = { version = "0.14", optional = true } wgpu = { version = "0.14", optional = true }
# ------------------------------------------- # -------------------------------------------

View file

@ -57,7 +57,7 @@ winit = { version = "0.27.2", default-features = false }
## Enable this when generating docs. ## Enable this when generating docs.
document-features = { version = "0.2", optional = true } document-features = { version = "0.2", optional = true }
puffin = { version = "0.13", optional = true } puffin = { version = "0.14", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] } serde = { version = "1.0", optional = true, features = ["derive"] }
# feature screen_reader # feature screen_reader

View file

@ -43,7 +43,7 @@ screen_reader = ["egui-winit?/screen_reader"]
puffin = ["dep:puffin", "egui-winit?/puffin"] puffin = ["dep:puffin", "egui-winit?/puffin"]
## Enable [`winit`](https://docs.rs/winit) integration. ## Enable [`winit`](https://docs.rs/winit) integration.
winit = ["egui-winit",] winit = ["egui-winit"]
[dependencies] [dependencies]
@ -63,7 +63,7 @@ document-features = { version = "0.2", optional = true }
# Native: # Native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.19.0", path = "../egui-winit", optional = true, default-features = false } egui-winit = { version = "0.19.0", path = "../egui-winit", optional = true, default-features = false }
puffin = { version = "0.13", optional = true } puffin = { version = "0.14", optional = true }
# Web: # Web:
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]

View file

@ -10,5 +10,5 @@ publish = false
[dependencies] [dependencies]
eframe = { path = "../../crates/eframe", features = ["puffin"] } eframe = { path = "../../crates/eframe", features = ["puffin"] }
puffin = "0.13" puffin = "0.14"
puffin_http = "0.10" puffin_http = "0.11"