-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 916 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 916 Bytes
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
[package]
name = "margin"
version = "0.13.0"
edition = "2024"
description = "A local TUI for code-review annotations over git/jj"
license = "MIT OR Apache-2.0"
[lib]
name = "margin"
path = "src/lib.rs"
[[bin]]
name = "margin"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.103"
async-channel = "2.5.0"
clap = { version = "4.6.1", features = ["derive"] }
crossterm = { version = "0.29", features = ["event-stream"] }
futures-lite = "2.6.1"
jiff = { version = "0.2.29", features = ["serde"] }
libc = "0.2.180"
notify = "8.2.0"
ratatui = "0.30.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
similar = { version = "3.1.1", features = ["inline", "unicode"] }
syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] }
thiserror = "2.0.18"
toml = "1.1.2"
uuid = { version = "1.23.4", features = ["v7", "serde"] }
[dev-dependencies]
tempfile = "3.27.0"