[package]
edition = "2021"
rust-version = "1.74"
name = "claude-session-driver"
version = "0.1.0"
authors = ["Marshall Ku <marshall@kakao.com>"]
build = false
exclude = [
"/scripts",
"/.github",
"/docs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Drive an interactive Claude REPL over tmux on the subscription seat, with JSON state detection. Installs the `csd` binary."
homepage = "https://github.com/marshallku/csd"
documentation = "https://docs.rs/claude-session-driver"
readme = "README.md"
keywords = [
"claude",
"tmux",
"automation",
"agent",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/marshallku/csd"
[lib]
name = "csd"
path = "src/lib.rs"
[[bin]]
name = "csd"
path = "src/main.rs"
[[test]]
name = "jsonl_detect"
path = "tests/jsonl_detect.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = true
strip = true