[package]
edition = "2024"
name = "clonetty"
version = "0.0.1"
authors = ["Derek Prijatelj <derek.s.prijatelj@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spawn a new Alacritty window cloning an existing terminal's working directory and its nested-shell environment stack, so Ctrl-D peels back one shell layer at a time."
readme = "README.md"
keywords = [
"alacritty",
"terminal",
"cli",
"clone",
"proc",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/prijatelj/clonetty"
[features]
default = ["x11"]
x11 = ["dep:x11rb"]
[[bin]]
name = "clonetty"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.x11rb]
version = "0.13"
optional = true
default-features = false