forked from dmackdev/egui_json_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 831 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "egui_json_tree"
version = "0.10.0"
authors = ["Duncan MacKinnon <[email protected]>"]
edition = "2021"
description = "An interactive JSON tree visualiser for egui, with search and highlight functionality."
repository = "https://github.com/dmackdev/egui_json_tree"
license = "MIT OR Apache-2.0"
keywords = ["json", "egui"]
categories = ["gui", "visualization"]
include = ["src/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"]
[dependencies]
egui = { path = "../egui/crates/egui" }
serde_json = { version = "1", optional = true }
simd-json = { version = "0.13", optional = true }
gr = { path = "../crates/gr" }
[dev-dependencies]
eframe = "0.30"
[features]
default = ["serde_json"]
serde_json = ["dep:serde_json"]
simd_json = ["dep:simd-json"]
[[example]]
name = "demo"
path = "examples/demo/src/main.rs"