zng/crates/zng-ext-config/Cargo.toml

46 lines
1.6 KiB
TOML

[package]
name = "zng-ext-config"
version = "0.2.9"
authors = ["The Zng Project Developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
description = "Part of the zng project."
documentation = "https://zng-ui.github.io/doc/zng_ext_config"
repository = "https://github.com/zng-ui/zng"
categories = ["gui"]
keywords = ["gui", "ui", "user-interface", "zng"]
[features]
# Enable YAML support.
yaml = ["dep:serde_yaml", "zng-ext-fs-watcher/yaml"]
# Enable TOML support.
toml = ["dep:toml", "zng-ext-fs-watcher/toml"]
# Enable RON support.
ron = ["dep:ron", "zng-ext-fs-watcher/ron"]
[dependencies]
zng-app-context = { path = "../zng-app-context", version = "0.3.3" }
zng-app = { path = "../zng-app", version = "0.3.5" }
zng-var = { path = "../zng-var", version = "0.2.7" }
zng-txt = { path = "../zng-txt", version = "0.2.6" }
zng-task = { path = "../zng-task", version = "0.2.7" }
zng-clone-move = { path = "../zng-clone-move", version = "0.2.4" }
zng-unique-id = { path = "../zng-unique-id", version = "0.3.0" }
zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.9", features = [
"json",
] }
tracing = "0.1"
bytemuck = { version = "1.15", features = ["derive"] }
indexmap = { version = "2.2", features = ["serde"] }
atomic = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
toml = { version = "0.8", optional = true, features = ["preserve_order"] }
ron = { version = "0.8", optional = true, features = ["indexmap"] }
serde_yaml = { version = "0.9", optional = true }
[package.metadata.docs.rs]
all-features = true