-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (56 loc) · 1.49 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
[package]
name = "flowrs-tui"
version = "0.1.13"
edition = "2021"
description = "Flowrs is a Terminal User Interface (TUI) for Apache Airflow"
license = "MIT"
repository = "https://github.com/jvanbuel/flowrs"
homepage = "https://github.com/jvanbuel/flowrs"
authors = ["[email protected]"]
[[bin]]
name = "flowrs"
path = "src/main.rs"
[package.metadata.dist]
formula = "flowrs"
[dependencies]
ansi-to-tui = { version = "7.0.0" }
anyhow = "1.0.98"
backtrace = "0.3.73"
chrono = "0.4.40"
clap = { version = "^4.5", features = ["derive", "env"] }
crossterm = "0.29.0"
custom_error = "1.9.2"
dirs = "6.0.0"
env_logger = "0.11.8"
futures = "0.3.31"
indoc = "2.0.6"
inquire = "0.7.5"
left-pad = "1.0.1"
log = "0.4.27"
ratatui = { version = "0.29.0", features = ["unstable-widget-ref"] }
regex = "1.11.1"
reqwest = { version = "0.12.15", features = ["json", "rustls-tls"] }
rstest = "0.25.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
simplelog = "0.12.2"
strum = { version = "0.27.1", features = ["derive"] }
syntect = "5.2.0"
syntect-tui = "3.0.5"
time = { version = "0.3.41", features = [
"serde",
"serde-human-readable",
"parsing",
"macros",
] }
tokio = { version = "1.44.2", features = ["full"] }
toml = "0.8.20"
url = "2.5.4"
webbrowser = "1.0.4"
[dev-dependencies]
mockito = "1.7.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html