-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1.38 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]
authors = ["Christian Visintin <christian.visintin1997@gmail.com>"]
categories = ["multimedia"]
description = "A telegram bot to be always up to date with the \"Papi\"'s news"
edition = "2021"
homepage = "https://github.com/veeso/big-luca-bot"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["bot", "telegram", "telegram-bot", "big-luca"]
license = "Unlicense"
name = "big-luca-bot"
readme = "README.md"
repository = "https://github.com/veeso/big-luca-bot"
version = "0.6.1"
[[bin]]
name = "big-luca-bot"
path = "src/main.rs"
[dependencies]
anyhow = "^1.0"
chrono = "^0.4"
data-encoding = "^2.3.2"
envy = "^0.4.2"
instagram-scraper-rs = "^0.1.0"
feed-rs = "2"
lazy-regex = "3"
once_cell = "^1.13"
rand = "0.8.5"
redis = { version = "^0.27", features = ["tokio-comp"] }
ring = "^0.17"
reqwest = { version = "^0.11", features = ["rustls-tls"] }
serde = { version = "^1.0.0", features = ["derive"] }
serde_json = "^1.0.0"
sqlx = { version = "^0.8", features = ["runtime-tokio-rustls", "sqlite"] }
teloxide = { version = "^0.13", features = [
"macros",
"rustls",
"webhooks",
"webhooks-axum",
] }
thiserror = "^1.0"
tokio = { version = "1.20.1", features = ["full"] }
tokio-cron-scheduler = "^0.13"
tracing = "^0.1"
tracing-subscriber = "^0.3"
url = "2.2.2"
[dev-dependencies]
pretty_assertions = "^1.2.1"
tempfile = "^3.2.0"
[features]
default = []
test-services = []