-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (40 loc) · 1.01 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
[package]
name = "hitman"
version = "0.8.0"
edition = "2021"
description = "A command line tool for hitting API endpoints"
license = "MIT"
homepage = "https://github.com/ropez/hitman"
repository = "https://github.com/ropez/hitman"
[[bin]]
name = "hitman"
path = "src/main.rs"
[[bin]]
name = "hitman-ui"
path = "src/main_ui.rs"
[dependencies]
chrono = "0.4.31"
clap = { version = "4.4", features = ["derive"] }
futures = "0.3"
httparse = "1.8"
inquire = { version = "0.6.2", features = ["date"] }
jsonpath = "0.1"
log = { version = "0.4.20", features = ["std"] }
reqwest = { version = "0.11", features = ["json", "cookies"] }
cookie = { version = "0.18.0" }
serde_json = "1.0"
termcolor = "1.4.0"
thiserror = "1.0"
tokio = { version = "1", features = ["full", "rt"] }
toml = "0.8"
walkdir = "2"
notify = "6.1.1"
spinoff = { version = "0.8.0", features = ["dots"] }
anyhow = "1.0.78"
crossterm = "0.27.0"
ratatui = "0.28.1"
fuzzy-matcher = "0.3.7"
tui-input = "0.8.0"
syntect-tui = "3.0.4"
syntect = "5.2.0"
graphql-parser = "0.4.0"