[package]
edition = "2024"
name = "midtown"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Midtown - a multi-Claude Code workspace manager, inspired by Gastown"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/btucker/midtown"
[lib]
name = "midtown"
path = "src/lib.rs"
[[bin]]
name = "midtown"
path = "src/bin/midtown/main.rs"
[[test]]
name = "chat_e2e"
path = "tests/chat_e2e.rs"
[[test]]
name = "daemon_e2e"
path = "tests/daemon_e2e.rs"
[[test]]
name = "nudge_delivery_e2e"
path = "tests/nudge_delivery_e2e.rs"
[[test]]
name = "nudge_e2e"
path = "tests/nudge_e2e.rs"
[[test]]
name = "tailf_integration"
path = "tests/tailf_integration.rs"
[[test]]
name = "task_sharing"
path = "tests/task_sharing.rs"
[[test]]
name = "tmux_rename_e2e"
path = "tests/tmux_rename_e2e.rs"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.base64ct]
version = "1"
features = ["alloc"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]
[dependencies.daemonize]
version = "0.5"
[dependencies.dirs]
version = "6.0"
[dependencies.fastrand]
version = "2"
[dependencies.fs2]
version = "0.4"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.http]
version = "1"
[dependencies.jwt-simple]
version = "0.12"
features = ["pure-rust"]
default-features = false
[dependencies.once_cell]
version = "1.21"
[dependencies.p256]
version = "0.13"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tailf]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"signal",
]
[dependencies.toml]
version = "0.9.11"
[dependencies.tower-http]
version = "0.6"
features = [
"trace",
"fs",
"cors",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-width]
version = "0.2.0"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dependencies.web-push-native]
version = "0.4"
features = [
"vapid",
"serialization",
]
[dev-dependencies.cargo-husky]
version = "1"
features = [
"precommit-hook",
"run-cargo-fmt",
"run-cargo-clippy",
]
default-features = false
[dev-dependencies.ntest]
version = "0.9"
[dev-dependencies.tempfile]
version = "3.0"