Skip to content

Commit c9d23b3

Browse files
authored
Merge pull request #40 from dmackdev/update-egui-to-0.30
update egui to 0.30
2 parents 75087eb + 8b409f3 commit c9d23b3

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "egui_json_tree"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Duncan MacKinnon <[email protected]>"]
55
edition = "2021"
66
description = "An interactive JSON tree visualiser for egui, with search and highlight functionality."
@@ -9,15 +9,14 @@ license = "MIT OR Apache-2.0"
99
keywords = ["json", "egui"]
1010
categories = ["gui", "visualization"]
1111
include = ["src/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"]
12-
rust-version = "1.76"
1312

1413
[dependencies]
15-
egui = { version = "0.29", default-features = false }
14+
egui = { version = "0.30", default-features = false }
1615
serde_json = { version = "1", optional = true }
1716
simd-json = { version = "0.13", optional = true }
1817

1918
[dev-dependencies]
20-
eframe = "0.29"
19+
eframe = "0.30"
2120

2221
[features]
2322
default = ["serde_json"]

examples/demo/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ version = "0.1.0"
44
authors = ["Duncan MacKinnon <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
7-
rust-version = "1.76"
87
publish = false
98

109
[dependencies]
11-
eframe = "0.29"
12-
egui = { version = "0.29", default-features = false }
10+
eframe = "0.30"
11+
egui = { version = "0.30", default-features = false }
1312
egui_json_tree = { path = "../../" }
1413
serde_json = { version = "1" }
1514

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".
66

77
[toolchain]
8-
channel = "1.76.0"
8+
channel = "1.81.0"
99
components = ["rustfmt", "clippy"]
1010
targets = ["wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)