Cargo.toml
1 [package] 2 name = "ust" 3 description = "Universal styling" 4 license = "MPL-2.0" 5 categories = [ "command-line-interface", "game-development", "graphics", "web-programming" ] 6 keywords = [ "styling", "color", "terminal", "ansi", "universal" ] 7 repository = "https://github.com/cull-os/carcass/tree/master/ust" 8 version = "0.0.2" 9 publish = true 10 11 authors.workspace = true 12 edition.workspace = true 13 14 [lib] 15 path = "mod.rs" 16 17 [lints] 18 workspace = true 19 20 [dependencies] 21 cab-util.path = "../cab/util" 22 ranged.path = "../ranged" 23 24 const-str.workspace = true 25 derive_more.workspace = true 26 enumflags2.workspace = true 27 itertools.workspace = true 28 itoa.workspace = true 29 num.workspace = true 30 smallvec.workspace = true 31 terminal_size.workspace = true 32 unic-emoji-char.workspace = true 33 unicode-segmentation.workspace = true 34 unicode-width.workspace = true