[package]
edition = "2024"
rust-version = "1.85"
name = "ansiq-core"
version = "0.1.0"
authors = ["Murong"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core reactive primitives, element contracts, styles, and shared runtime-facing types for Ansiq."
homepage = "https://github.com/murongg/ansiq"
documentation = "https://docs.rs/ansiq-core"
readme = "README.md"
keywords = [
"tui",
"terminal",
"reactive",
"ui",
]
categories = [
"command-line-interface",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/murongg/ansiq"
resolver = "2"
[lib]
name = "ansiq_core"
path = "src/lib.rs"
[[test]]
name = "element"
path = "tests/element.rs"
[[test]]
name = "geometry"
path = "tests/geometry.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "hooks"
path = "tests/hooks.rs"
[[test]]
name = "reactivity"
path = "tests/reactivity.rs"
[[test]]
name = "reactivity_compile"
path = "tests/reactivity_compile.rs"
[[test]]
name = "render_math"
path = "tests/render_math.rs"
[[test]]
name = "style"
path = "tests/style.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[test]]
name = "transcript"
path = "tests/transcript.rs"
[dependencies.tokio]
version = "1.48"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.trybuild]
version = "1.0"