Skip to content

Commit

Permalink
Update ehttp to 0.5 (#4055)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk authored Feb 16, 2024
1 parent 2feb144 commit 6fbf7fe
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 39 deletions.
57 changes: 23 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/egui_demo_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ wgpu = { workspace = true, features = ["webgpu", "webgl"], optional = true }


# feature "http":
ehttp = { version = "0.4", optional = true }
ehttp = { version = "0.5", optional = true }
image = { version = "0.24", optional = true, default-features = false, features = [
"jpeg",
"png",
Expand All @@ -78,7 +78,7 @@ env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
] }
rfd = { version = "0.11", optional = true }
rfd = { version = "0.13", optional = true }

# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/egui_extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ syntect = { version = "5", optional = true, default-features = false, features =
resvg = { version = "0.37", optional = true, default-features = false }

# http feature
ehttp = { version = "0.4", optional = true, default-features = false }
ehttp = { version = "0.5", optional = true, default-features = false }
2 changes: 2 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ skip = [
]
skip-tree = [
{ name = "criterion" }, # dev-dependency
{ name = "fastrand" }, # old version via accesskit_unix
{ name = "foreign-types" }, # small crate. Old version via cocoa and core-graphics (winit).
{ name = "objc2" }, # old version via accesskit_macos
{ name = "polling" }, # old version via accesskit_unix
{ name = "rfd" }, # example dependency
]

Expand Down
2 changes: 1 addition & 1 deletion examples/file_dialog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
] }
rfd = "0.11"
rfd = "0.13"
2 changes: 1 addition & 1 deletion examples/save_plot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ eframe = { workspace = true, features = [
] }
egui_plot.workspace = true
image = { version = "0.24", default-features = false, features = ["png"] }
rfd = "0.11.0"
rfd = "0.13.0"
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
Expand Down

0 comments on commit 6fbf7fe

Please sign in to comment.