[package] name = "anathema" version = "0.1.1-alpha" edition = "2021" rust-version = "1.62" license = "MIT" description = "Text User Interface library (TUI) with a template language and runtime" documentation = "https://togglebyte.github.io/anathema-guide/" homepage = "https://github.com/togglebyte/anathema" repository = "https://github.com/togglebyte/anathema" [features] default = ["runtime"] widgets = [] templates = ["widgets"] runtime = ["templates"] logging = ["log"] flume = ["dep:flume"] serde-json = ["serde_json"] [dependencies] bitflags = "1.3.2" crossterm = "0.24.0" flume = { version = "0.10.14", optional = true } log = { version = "0.4.17", optional = true } serde_json = { version = "1.0.83", optional = true } unicode-width = "0.1.9" [dev-dependencies] proptest = "1.0.0"