-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 904 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "kasuari"
version = "0.4.7"
authors = ["Dylan Ede <dylanede@googlemail.com>", "The Ratatui Developers"]
edition = "2021"
description = """
A rust layout solver for GUIs, based on the Cassowary algorithm.
A fork of the unmaintained cassowary-rs crate with improvments and bug fixes.
Kasuari is the indonesian name for the cassowary bird.
"""
documentation = "https://docs.rs/kasuari"
repository = "https://github.com/ratatui/kasuari"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["cassowary", "layout", "tui", "solver"]
categories = [
"algorithms",
"command-line-interface",
"graphics",
"gui",
"rendering",
]
rust-version = "1.78"
[features]
default = ["std"]
## enables std
std = ["thiserror/std"]
[dependencies]
hashbrown = "0.15"
thiserror = { version = "2.0", default-features = false }
[dev-dependencies]
rstest = "0.25"
itertools = "0.14.0"