-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (59 loc) · 2.06 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (59 loc) · 2.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "nightcrow"
version = "0.1.0"
edition = "2024"
description = "Agent-adjacent terminal workbench — git diff viewer + multi-terminal panes for running CLIs next to your code"
license = "Apache-2.0"
repository = "https://github.com/code0xff/nightcrow"
homepage = "https://github.com/code0xff/nightcrow"
readme = "README.md"
keywords = ["tui", "git", "terminal", "agentic", "cli"]
categories = ["command-line-utilities", "development-tools"]
# The published crate needs the viewer's *built* bundle (rust-embed reads
# viewer-ui/dist at compile time) but not its sources or toolchain files —
# those live in git. Keeps the crate small without breaking `cargo install`.
# Repo-only tooling (agent rules, CI, hooks, planning notes) is dropped too.
exclude = [
"viewer-ui/node_modules",
"viewer-ui/src",
"viewer-ui/index.html",
"viewer-ui/package.json",
"viewer-ui/package-lock.json",
"viewer-ui/tsconfig.json",
"viewer-ui/vite.config.ts",
".claude",
".github",
".githooks",
"release.toml",
"CLAUDE.md",
"docs/code-review-2026-05-08.md",
"docs/status-short-plan.md",
"docs/web-viewer-plan.md",
]
[dependencies]
ratatui = { version = "0.30", features = ["crossterm"] }
crossterm = "0.29"
git2 = { version = "0.21", features = ["vendored-openssl", "vendored-libgit2"] }
syntect = "5.3"
anyhow = "1"
portable-pty = "0.9"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.9"
dirs = "6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
two-face = "0.5.1"
notify = "8.2.0"
notify-debouncer-mini = "0.7.0"
alacritty_terminal = { version = "0.26", default-features = false }
# Web mirror server: synchronous WebSocket (no async runtime), Argon2 login
# hashing (matches code-server), and an OS RNG for password/session tokens.
tungstenite = "0.30"
argon2 = "0.5"
getrandom = "0.4"
rust-embed = { version = "8.12.0", features = ["interpolate-folder-path", "mime-guess"] }
[dev-dependencies]
tempfile = "3"