85 lines
1.6 KiB
TOML
85 lines
1.6 KiB
TOML
|
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||
|
|
#
|
||
|
|
# When uploading crates to the registry Cargo will automatically
|
||
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
||
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
||
|
|
# to registry (e.g., crates.io) dependencies.
|
||
|
|
#
|
||
|
|
# If you are reading this file be aware that the original Cargo.toml
|
||
|
|
# will likely look very different (and much more reasonable).
|
||
|
|
# See Cargo.toml.orig for the original contents.
|
||
|
|
|
||
|
|
[package]
|
||
|
|
edition = "2021"
|
||
|
|
name = "grimdock"
|
||
|
|
version = "0.2.0"
|
||
|
|
build = false
|
||
|
|
autolib = false
|
||
|
|
autobins = false
|
||
|
|
autoexamples = false
|
||
|
|
autotests = false
|
||
|
|
autobenches = false
|
||
|
|
description = "Dockable panel layout system for egui"
|
||
|
|
readme = "README.md"
|
||
|
|
license = "MIT OR Apache-2.0"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = []
|
||
|
|
serde = [
|
||
|
|
"dep:serde",
|
||
|
|
"egui/serde",
|
||
|
|
]
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "grimdock"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "1_basic"
|
||
|
|
path = "examples/1_basic.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "2_split_layout"
|
||
|
|
path = "examples/2_split_layout.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "3_header_features"
|
||
|
|
path = "examples/3_header_features.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "4_persistence"
|
||
|
|
path = "examples/4_persistence.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "5_texture_icons"
|
||
|
|
path = "examples/5_texture_icons.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "6_policy_controls"
|
||
|
|
path = "examples/6_policy_controls.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "7_theme_options"
|
||
|
|
path = "examples/7_theme_options.rs"
|
||
|
|
|
||
|
|
[[example]]
|
||
|
|
name = "demo"
|
||
|
|
path = "examples/demo.rs"
|
||
|
|
|
||
|
|
[dependencies.egui]
|
||
|
|
version = "0.34"
|
||
|
|
default-features = false
|
||
|
|
|
||
|
|
[dependencies.serde]
|
||
|
|
version = "1"
|
||
|
|
features = ["derive"]
|
||
|
|
optional = true
|
||
|
|
|
||
|
|
[dev-dependencies.eframe]
|
||
|
|
version = "0.33.3"
|
||
|
|
features = [
|
||
|
|
"default_fonts",
|
||
|
|
"glow",
|
||
|
|
]
|
||
|
|
default-features = false
|