-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Cargo.toml
81 lines (73 loc) · 2.56 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "atac"
description = "Arguably a Terminal API Client. Feature-full, free, open-source, offline and account-less."
version = "0.18.1"
authors = ["julien-cpsn"]
edition = "2021"
rust-version = "1.79"
license = "MIT"
readme = "README.md"
documentation = "https://atac.julien-cpsn.com/"
homepage = "https://github.com/Julien-cpsn/ATAC"
repository = "https://github.com/Julien-cpsn/ATAC"
keywords = ["API", "Client", "TUI", "Postman", "Insomnia"]
exclude = [
".github",
"gifs",
"exemple_resources",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Request
reqwest = { version = "=0.12.8", default-features = false, features = ["cookies", "rustls-tls-native-roots", "multipart", "gzip", "brotli", "deflate", "stream"] }
reqwest_cookie_store = "=0.8.0"
cookie_store = "=0.21.0"
# TUI
ratatui = { version = "=0.28.0", features = ["serde"] }
crokey = "=1.1.0"
tui-big-text = "=0.6.0"
tui-tree-widget = "=0.22.0"
tui-textarea = { version = "=0.6.1", features = ["ratatui"] }
throbber-widgets-tui = "=0.7.0"
ratatui-image = { version = "=1.0.5", features = ["crossterm"] }
image = "=0.25.2"
# Main functionalities
syntect = "=5.2.0"
serde = { version = "=1.0.213", features = ["derive", "rc"] }
serde_json = "=1.0.132"
serde_yaml = "=0.9.34"
jsonxf = "=1.1.1"
toml = "=0.8.19"
boa_engine = { version = "=0.19.1", default-features = false }
parse_postman_collection = "=0.2.3"
curl-parser = { version = "=0.3.1", default-features = false }
clap = { version = "=4.5.20", features = ["derive", "color", "suggestions"] }
directories = "=5.0.1"
arboard = "=3.4.1"
# Async
tokio = { version = "=1.41.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio-util = "0.7.12"
parking_lot = { version = "=0.12.3", features = ["serde", "send_guard"] }
# Utils
strum = "=0.26.3"
lazy_static = "=1.5.0"
nestify = "=0.3.3"
walkdir = "=2.5.0"
snailquote = "=0.3.1"
indexmap = { version = "=2.6.0", features = ["serde", "rayon"] }
rayon = "=1.10.0"
thiserror = "=1.0.65"
anyhow = "=1.0.91"
clap-verbosity-flag = "=2.2.2"
clap_complete = "=4.5.35"
clap_mangen = "=0.2.24"
base64 = "=0.22.1"
regex = "=1.11.1"
chrono = { version = "=0.4.38", default-features = false, features = ["now"] }
uuid = { version = "=1.11.0", features = ["v4", "v7"] }
# Tracing
tracing = { version = "=0.1.40", features = ["async-await"] }
tracing-subscriber = { version = "=0.3.18", features = ["parking_lot", "chrono", "regex"]}
tracing-log = "=0.2.0"
reqwest-tracing = "=0.5.3"
reqwest-middleware = { version = "=0.3.3", features = ["rustls-tls", "json", "multipart"]}