-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
57 lines (54 loc) · 1.71 KB
/
Cargo.toml
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
[package]
name = "limmat"
version = "0.2.2"
edition = "2021"
license = "GPL-3.0-only"
description = "Tool to run continuous tests locally on Git revision ranges."
repository = "https://github.com/bjackman/limmat"
readme = "README.md"
keywords = ["testing", "git"]
categories = ["command-line-utilities", "development-tools::testing"]
# We rely on #[expect(...)]
rust-version = "1.80"
authors = ["Brendan Jackman"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0.79"
nix = { version = "0.28.0", features = ["process", "signal", "fs", "feature"] }
tempfile = "3.10.1"
notify = "6.1"
futures-core = "0.3.30"
futures = "0.3.30"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
async-stream = "0.3"
env_logger = "0.11"
log = "0.4"
async-condvar-fair = { version = "1.0", features = [ "parking_lot_0_12" ] }
# https://docs.rs/async-condvar-fair/latest/async_condvar_fair/#mutex-guard-sending-between-threads
parking_lot = {version = "0.12", features = ["send_guard"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
directories = "5.0.1"
regex = "1.10.6"
lazy_static = "1.5.0"
ansi-control-codes = "1.0.1"
colored = "2.1.0"
strip-ansi-escapes = "0.2.0"
serde_json = "1.0.128"
itertools = "0.13.0"
axum = { version = "0.7.7", features = ["http1", "ws"] }
tower-http = { version = "0.6.1", features = ["fs"] }
indoc = "2.0.5"
unicode-segmentation = "1.12.0"
crossterm = {version = "0.28.1", features = ["event-stream"] }
schemars = "0.8.21"
sha3 = "0.10.8"
[dev-dependencies]
test-case = "3.3"
test-log = "0.2"
test_bin = "0.4"
glob = "0.3"
googletest = "0.12.0"
pretty_assertions = "1.4.1"