diff --git a/Cargo.toml b/Cargo.toml index 3e82b80..caaf588 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_json_tree" -version = "0.8.0" +version = "0.9.0" authors = ["Duncan MacKinnon "] edition = "2021" description = "An interactive JSON tree visualiser for egui, with search and highlight functionality." @@ -9,15 +9,14 @@ license = "MIT OR Apache-2.0" keywords = ["json", "egui"] categories = ["gui", "visualization"] include = ["src/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"] -rust-version = "1.76" [dependencies] -egui = { version = "0.29", default-features = false } +egui = { version = "0.30", default-features = false } serde_json = { version = "1", optional = true } simd-json = { version = "0.13", optional = true } [dev-dependencies] -eframe = "0.29" +eframe = "0.30" [features] default = ["serde_json"] diff --git a/examples/demo/Cargo.toml b/examples/demo/Cargo.toml index 332aa3c..e9ca027 100644 --- a/examples/demo/Cargo.toml +++ b/examples/demo/Cargo.toml @@ -4,12 +4,11 @@ version = "0.1.0" authors = ["Duncan MacKinnon "] edition = "2021" license = "MIT OR Apache-2.0" -rust-version = "1.76" publish = false [dependencies] -eframe = "0.29" -egui = { version = "0.29", default-features = false } +eframe = "0.30" +egui = { version = "0.30", default-features = false } egui_json_tree = { path = "../../" } serde_json = { version = "1" } diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 871f562..0eefd31 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -5,6 +5,6 @@ # to the user in the error, instead of "error: invalid channel name '[toolchain]'". [toolchain] -channel = "1.76.0" +channel = "1.81.0" components = ["rustfmt", "clippy"] targets = ["wasm32-unknown-unknown"]