-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1.92 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
[package]
name = "file_upload_proxy"
version = "2.0.0"
authors = ["Pavel Ershov <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
tokio-console = ["console-subscriber", "tokio/tracing"]
[dependencies]
eyre = "0.6"
color-eyre = "0.5"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-error = "0.2"
structopt = "0.3"
tokio = {version = "1.16", features = ["full", "tracing"]}
console-subscriber = {version = "0.1", optional = true} # Специальный слой для tracing для возможности отладки через tokio-console
hyper = {version = "0.14", features = ["full"]}
hyper-rustls = "0.22"
futures = "0.3"
uuid = {version = "0.8", features = ["v4"]}
chrono = "0.4"
mime = "0.3"
rsa = "0.5"
sha2 = "0.9"
urlencoding = "2.1"
base64 = "0.13"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
async-compression = {version = "0.3", features = ["tokio", "gzip"]}
tokio-util = {version = "0.6", features = ["io"]}
serde_qs = "0.8"
prometheus = "0.13"
lazy_static = "1.4"
serde_yaml = "0.8"
slack_client_lib = { git = "https://github.com/DevNulPavel/slack_client_lib.git", rev = "12a0a37af29da391f2b00f4db11865f16b8d6f97", features = ["rustls"] }
reqwest = {version = "0.11", default-features = false, features = ["json", "multipart", "rustls-tls"]}
minify = "1.3"
qrcode = "0.12"
image = {version = "0.23", default-features = false, features = ["png"]}
# scopeguard = "1.1"
# backoff = {version = "0.3", default-features = false, features = ["tokio"]}
# pin-project = "1.0.8"
# Правильнее было бы отдельную папку для текущего приложения
# Но для маленькой утилиты тестов вполне подойдет
[workspace]
members = [".", "test_app"]