-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "opencode-multiplexer"
version = "0.3.0"
edition = "2024"
description = "A terminal multiplexer for managing OpenCode sessions"
license = "Apache-2.0"
repository = "https://github.com/joeyism/ocmux-rs"
homepage = "https://github.com/joeyism/ocmux-rs"
readme = "README.md"
keywords = ["terminal", "multiplexer", "tui", "opencode"]
categories = ["command-line-utilities"]
[[bin]]
name = "ocmux"
path = "src/main.rs"
[dependencies]
alacritty_terminal = "0.26"
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
crossterm = "0.28"
portable-pty = "0.9"
ratatui = "0.30.0-beta.0"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
libc = "0.2"
pulldown-cmark = "0.12"
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
nucleo = "0.5"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "time"] }
[dev-dependencies]
pretty_assertions = "1"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"