[package]
edition = "2021"
rust-version = "1.85"
name = "tui-dispatch-core"
version = "0.6.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for tui-dispatch"
readme = false
license = "MIT"
repository = "https://github.com/dmk/tui-dispatch"
[features]
debug = []
default = []
json-schema = ["schemars"]
serde = ["dep:serde"]
subscriptions = ["tokio-stream"]
tasks = []
testing-time = ["tokio/test-util"]
tracing = ["dep:tracing"]
[lib]
name = "tui_dispatch_core"
path = "src/lib.rs"
[dependencies.schemars]
version = "0.8"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.tokio-stream]
version = "0.1"
optional = true
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.serde_json]
version = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.crossterm]
version = "0.28"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ratatui]
version = "0.29"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[target.'cfg(target_arch = "wasm32")'.dependencies.ratatui]
version = "0.29"
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.tinycrossterm]
version = "0.1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"io-util",
"rt",
"time",
]
default-features = false