-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (29 loc) · 975 Bytes
/
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
[package]
name = "termpad"
version = "2.0.0"
authors = ["Spyros Roum <spyros.roum@posteo.net>"]
edition = "2021"
description = "Command line pastebin for sharing terminal output. "
readme = "README.md"
repository = "https://github.com/SpyrosRoum/termpad"
license-file = "LICENSE"
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
rand = "0.9"
dirs = "6.0"
thiserror = "2"
once_cell = "1.20"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
axum = "0.8.1"
axum-extra = { version = "0.10", features = ["query"]}
tower = "0.5"
tower-http = { version = "0.6", features = ["trace", "util"]}
# axum-macros = "0.5" # In case we need `debug_handler`
tokio = { version = "1.43", features = ["full"] }
tokio-util = { version = "0.7", features = ["io-util"] }
futures = "0.3"
askama = "0.12"
serde = { version = "1", features = ["derive"] }
async-compression = { version = "0.4.18", features = ["futures-io", "tokio", "zstd"] }