-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 898 Bytes
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
[package]
name = "folio"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
async-trait = "0.1"
percent-encoding = "2.3"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
clap = { version = "4", features = ["derive"] }
dirs = "5.0"
dotenvy = "0.15"
owo-colors = "4"
redis = { version = "0.27", features = ["tokio-comp"] }
reqwest = { version = "0.12", features = ["json", "gzip"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tabled = { version = "0.17", features = ["ansi"] }
termimad = "0.30"
textwrap = "0.16"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
csv = "1.4.0"
regex = "1.12.2"
rcgen = "0.13"
axum = "0.7"
axum-server = { version = "0.7", features = ["tls-rustls"] }
open = "5"
base64 = "0.22"
rustls = "0.23"
rustls-pemfile = "2"
tokio-rustls = "0.26"
[dev-dependencies]
tempfile = "3"