-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.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
[package]
name = "hone"
version = "1.0.0"
edition = "2021"
authors = ["Safia Abdalla"]
license = "MIT"
description = "A CLI integration test runner for command-line applications"
repository = "https://github.com/captainsafia/hone"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
anyhow = "1"
thiserror = "1"
regex = "1"
owo-colors = "4"
strip-ansi-escapes = "0.2"
glob = "0.3"
chrono = "0.4"
tempfile = "3"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-lsp = "0.2"
tower = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
dirs = "5"
toml_edit = "0.22"
relnotify = "1"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls", "native-tls-vendored"] }
notify = "8"
notify-debouncer-full = "0.6"
[dev-dependencies]
assert_matches = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"