[package]
edition = "2021"
rust-version = "1.89.0"
name = "hojicha-runtime"
version = "0.2.2"
authors = ["McCoy Reynolds Becker <mccoybecker@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event handling and async runtime for Hojicha TUI framework"
homepage = "https://jgok76.gitea.cloud/femtomc/hojicha"
documentation = "https://docs.rs/hojicha-runtime"
readme = "README.md"
keywords = [
"tui",
"terminal",
"async",
"runtime",
"events",
]
categories = [
"command-line-interface",
"asynchronous",
]
license = "GPL-3.0"
repository = "https://jgok76.gitea.cloud/femtomc/hojicha"
[lib]
name = "hojicha_runtime"
path = "src/lib.rs"
[[test]]
name = "panic_recovery_test"
path = "tests/panic_recovery_test.rs"
[[test]]
name = "resource_limits_test"
path = "tests/resource_limits_test.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.crossterm]
version = "0.29"
[dependencies.futures]
version = "0.3.31"
[dependencies.hdrhistogram]
version = "7.5.4"
[dependencies.hojicha-core]
version = "0.2.2"
[dependencies.log]
version = "0.4.27"
[dependencies.once_cell]
version = "1.21"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.143"
[dependencies.thiserror]
version = "2.0.16"
[dependencies.tokio]
version = "1.47.1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1.17"
features = ["time"]
[dependencies.tokio-util]
version = "0.7.16"
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.tempfile]
version = "3.21.0"
[dev-dependencies.tokio-test]
version = "0.4.4"