From 8c76b8caff32e47e4419338e6e0cdf52353cbf2c Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 7 Nov 2022 12:37:37 +0100 Subject: [PATCH] Update op puffin 0.14.0 (#2257) --- Cargo.lock | 13 +++++++------ crates/eframe/Cargo.toml | 2 +- crates/egui-winit/Cargo.toml | 2 +- crates/egui_glow/Cargo.toml | 4 ++-- examples/puffin_profiler/Cargo.toml | 4 ++-- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32915006..f81c1ce2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2760,9 +2760,9 @@ checksum = "2f61dcf0b917cd75d4521d7343d1ffff3d1583054133c9b5cbea3375c703c40d" [[package]] name = "puffin" -version = "0.13.3" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b40725b2702b9c660938b8d9c56978091252374cc50d73a83b59695b8d32ec03" +checksum = "796a1b7d7d0ec984dde24615178cbd14dc697ea4cdcddfd1fee9a5f87135f9e8" dependencies = [ "anyhow", "bincode", @@ -2776,9 +2776,9 @@ dependencies = [ [[package]] name = "puffin_http" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784f1952bda562ec8b76651f0c879b61eb02eaf20fe9acd2a8ca69b4898b13fd" +checksum = "77dae1a51a8887f161ae17809ec4159bb3fbc8be60d12947039fa063cf211f1b" dependencies = [ "anyhow", "crossbeam-channel", @@ -3063,11 +3063,12 @@ dependencies = [ [[package]] name = "ruzstd" -version = "0.2.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cada0ef59efa6a5f4dc5e491f93d9f31e3fc7758df421ff1de8a706338e1100" +checksum = "ffae8df4aa221781b715c27bbed0fac16b6f1e2643efb7af8a24dfc78d444493" dependencies = [ "byteorder", + "thiserror", "twox-hash", ] diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index e4798d60..93319e00 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -89,7 +89,7 @@ directories-next = { version = "2", optional = true } egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true, features = [ "winit", ] } -puffin = { version = "0.13", optional = true } +puffin = { version = "0.14", optional = true } wgpu = { version = "0.14", optional = true } # ------------------------------------------- diff --git a/crates/egui-winit/Cargo.toml b/crates/egui-winit/Cargo.toml index b687249f..0ebd9f49 100644 --- a/crates/egui-winit/Cargo.toml +++ b/crates/egui-winit/Cargo.toml @@ -57,7 +57,7 @@ winit = { version = "0.27.2", default-features = false } ## Enable this when generating docs. 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"] } # feature screen_reader diff --git a/crates/egui_glow/Cargo.toml b/crates/egui_glow/Cargo.toml index 2f68a38a..fcda408d 100644 --- a/crates/egui_glow/Cargo.toml +++ b/crates/egui_glow/Cargo.toml @@ -43,7 +43,7 @@ screen_reader = ["egui-winit?/screen_reader"] puffin = ["dep:puffin", "egui-winit?/puffin"] ## Enable [`winit`](https://docs.rs/winit) integration. -winit = ["egui-winit",] +winit = ["egui-winit"] [dependencies] @@ -63,7 +63,7 @@ document-features = { version = "0.2", optional = true } # Native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] 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: [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/examples/puffin_profiler/Cargo.toml b/examples/puffin_profiler/Cargo.toml index bb371f02..fefb311f 100644 --- a/examples/puffin_profiler/Cargo.toml +++ b/examples/puffin_profiler/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = ["puffin"] } -puffin = "0.13" -puffin_http = "0.10" +puffin = "0.14" +puffin_http = "0.11"