-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
28 lines (24 loc) · 814 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
[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 = { version = "0.30", default-features = false }
serde_json = { version = "1", optional = true }
simd-json = { version = "0.13", optional = true }
[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"