-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathCargo.toml
80 lines (72 loc) · 2.58 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
[package]
name = "atac"
description = "Arguably a Terminal API Client. Feature-full, free, open-source, offline and account-less."
version = "0.18.2"
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.12", default-features = false, features = ["cookies", "rustls-tls-native-roots", "multipart", "gzip", "brotli", "deflate", "stream"] }
reqwest_cookie_store = "=0.8.0"
cookie_store = "=0.21.1"
# TUI
ratatui = { version = "=0.29.0", features = ["serde"] }
crokey = "=1.1.0"
tui-big-text = "=0.7.1"
tui-tree-widget = "=0.23.0"
tui-textarea = { version = "=0.7.0", features = ["ratatui"] }
throbber-widgets-tui = "=0.8.0"
ratatui-image = { version = "=4.2.0", features = ["crossterm"] }
image = "=0.25.5"
# Main functionalities
syntect = "=5.2.0"
serde = { version = "=1.0.217", features = ["derive", "rc"] }
serde_json = "=1.0.139"
serde_yaml = "=0.9.34"
jsonxf = "=1.1.1"
toml = "=0.8.20"
boa_engine = { version = "=0.20.0", default-features = false }
parse_postman_collection = "=0.2.3"
curl-parser = { version = "=0.5.0", default-features = false }
clap = { version = "=4.5.30", features = ["derive", "color", "suggestions"] }
directories = "=6.0.0"
arboard = "=3.4.1"
# Async
tokio = { version = "=1.43.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio-util = "=0.7.13"
parking_lot = { version = "=0.12.3", features = ["serde", "send_guard"] }
# Utils
strum = { version = "=0.27.1", features = ["derive"] }
lazy_static = "=1.5.0"
nestify = "=0.3.3"
walkdir = "=2.5.0"
snailquote = "=0.3.1"
indexmap = { version = "=2.7.1", features = ["serde", "rayon"] }
rayon = "=1.10.0"
thiserror = "=2.0.11"
anyhow = "=1.0.96"
clap-verbosity-flag = "=3.0.2"
clap_complete = "=4.5.45"
clap_mangen = "=0.2.26"
regex = "=1.11.1"
chrono = { version = "=0.4.39", default-features = false, features = ["now"] }
uuid = { version = "=1.13.2", features = ["v4", "v7"] }
# Tracing
tracing = { version = "=0.1.41", features = ["async-await"] }
tracing-subscriber = { version = "=0.3.19", features = ["parking_lot", "chrono", "regex"]}
tracing-log = "=0.2.0"
reqwest-tracing = "=0.5.5"
reqwest-middleware = { version = "=0.4.0", features = ["rustls-tls", "json", "multipart"]}