[package]
edition = "2024"
name = "kitty-rc"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for controlling the kitty terminal emulator via its remote control protocol"
homepage = "https://github.com/rektide/kitty-rc-rs"
documentation = "https://docs.rs/kitty-rc"
readme = "README.md"
license = "MIT"
repository = "https://github.com/rektide/kitty-rc-rs"
[lib]
name = "kitty_rc"
path = "src/lib.rs"
[[bin]]
name = "kitty-rc"
path = "src/main.rs"
[[bin]]
name = "list_windows"
path = "src/bin/list_windows.rs"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]