Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_json_tree"
version = "0.8.0"
version = "0.9.0"
authors = ["Duncan MacKinnon <dmackdev@gmail.com>"]
edition = "2021"
description = "An interactive JSON tree visualiser for egui, with search and highlight functionality."
Expand All @@ -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"]
Expand Down
5 changes: 2 additions & 3 deletions examples/demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ version = "0.1.0"
authors = ["Duncan MacKinnon <dmackdev@gmail.com>"]
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" }

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Loading