-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (61 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
66 lines (61 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rex"
edition = "2021"
version = "1.1.2"
description = "Command line tool for automating data collection"
license = "GPL-3.0-or-later"
repository = "https://github.com/JaminMartin/rex"
homepage = "https://github.com/JaminMartin/rex"
[[bin]]
name = "rex"
path = "src/main.rs"
[lib]
name = "rex"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5.9", features = ["derive", "cargo"] }
# lettre = { version = "0.11", features = ["builder"] }
lettre = { version = "0.11", default-features = false, features = [
"builder",
"smtp-transport",
"tokio1",
"rustls",
"tokio1-rustls",
"ring",
"webpki-roots",
] }
toml = "0.8.19"
time = { version = "0.3", features = [
"macros",
"formatting",
"local-offset",
"parsing",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.41.1", features = ["full"] }
log = "0.4.22"
env_logger = "0.11.5"
crossbeam = "0.8.4"
ratatui = "0.30.0"
crossterm = { version = "0.29.0", features = ["event-stream"] }
tui-logger = { version = "0.18.0", features = ["crossterm"] }
itertools = "0.13.0"
dirs = "6.0.0"
clickhouse = { version = "0.13.2", features = ["uuid", "time"] }
uuid = { version = "1", features = ["v4", "serde"] }
axum = { version = "0.8.4", features = ["ws"] }
lttb = "0.2.0"
nucleo-matcher = "0.3"
walkdir = "2.5"
reqwest = { version = "0.13", features = ["blocking", "json", "rustls",] }
tokio-tungstenite = "0.28"
futures-util = "0.3"
color-eyre = "0.6.5"
futures = "0.3.31"
async-trait = "0.1.89"
ratatui-themes = "0.2.0"
[dev-dependencies]
regex = "1"
tempfile = "3.3"