| 1 |
[package] |
| 2 |
name = "kittygfx" |
| 3 |
version = "0.1.1" |
| 4 |
description = "Rendering-agnostic implementation of the Kitty terminal graphics protocol" |
| 5 |
edition.workspace = true |
| 6 |
rust-version.workspace = true |
| 7 |
authors.workspace = true |
| 8 |
repository.workspace = true |
| 9 |
license.workspace = true |
| 10 |
keywords = ["terminal", "kitty", "graphics", "protocol"] |
| 11 |
categories = ["parser-implementations", "command-line-interface"] |
| 12 |
readme = "README.md" |
| 13 |
# Not on crates.io yet, by decision (2026-08-06). Consumers take it as a git |
| 14 |
# dependency on makenot.work/git/max/shop. The keywords and categories above are |
| 15 |
# kept for the eventual release; the name was picked for the registry. |
| 16 |
publish = false |
| 17 |
|
| 18 |
[lints] |
| 19 |
workspace = true |
| 20 |
|
| 21 |
[dependencies] |
| 22 |
base64 = { workspace = true } |
| 23 |
tracing = { workspace = true } |
| 24 |
|