-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
32 lines (29 loc) · 865 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
[package]
name = "npaperbot-telegram"
version = "4.2.0"
authors = ["Alexander Zaitsev <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
axum = "0.5.16"
chrono = "0.4.22"
futures = "0.3.24"
lazy_static = "1.4.0"
log = "0.4.17"
nom = "7.1.1"
pretty_env_logger = "0.4.0"
regex = "1.6.0"
reqwest = "0.11.12"
serde = "1.0.145"
serde_json = "1.0.85"
teloxide = { version = "0.10.1", features = ["auto-send", "macros"] }
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros"] }
tokio-stream = "0.1.10"
tower = "0.4.13"
tower-http = { version = "0.3.4", features = ["add-extension", "trace"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "json"] }
url = "2.3.1"
[profile.release]
lto = true