claude-print/Cargo.toml
jedarden b76fa15479 feat: forward --dangerously-skip-permissions, --allowedTools, --disallowedTools to child; bump v0.2.0
These flags were parsed by the CLI but never added to claude_args,
so headless callers (e.g. marathon-coding) would hang on interactive
tool-use approval prompts. Also forward allowedTools/disallowedTools
for completeness.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 18:11:53 -04:00

37 lines
803 B
TOML

[workspace]
members = [".", "test-fixtures/mock-claude"]
[package]
name = "claude-print"
version = "0.2.0"
edition = "2021"
rust-version = "1.82"
description = "Drop-in replacement for `claude -p` that bills against the subscription pool via PTY"
license = "MIT"
[[bin]]
name = "claude-print"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.38", features = ["derive", "env"] }
anyhow = "1.0.98"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
toml = "0.8.22"
nix = { version = "0.29", features = ["process", "signal", "fs", "ioctl", "term"] }
tempfile = "3.20"
libc = "0.2"
atty = "0.2"
which = "7.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.release-musl]
inherits = "release"