-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 1.12 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
[package]
name = "perception-guardian"
version = "0.1.0"
edition = "2021"
description = "Telegram bot with image-emoji CAPTCHA challenge-response."
license = "MIT"
homepage = "https://github.com/crabvk/perception-guardian"
repository = "https://github.com/crabvk/perception-guardian"
readme = "README.md"
keywords = ["captcha", "telegram", "bot"]
authors = ["Vyacheslav Konovalov <[email protected]>"]
[dependencies]
teloxide = { version = "0.12", features = ["macros", "webhooks-axum"] }
log = "0.4"
pretty_env_logger = "0.5"
tokio = { version = "1.32", features = ["rt-multi-thread", "macros"] }
futures = "0.3"
dotenvy = "0.15"
dptree = "0.3.0"
url = "2.4"
rand = "0.8"
reqwest = { version = "0.11", features = ["json"] }
serde_json = "1.0"
redis = { version = "0.24", features = ["tokio-comp", "connection-manager"] }
sqlx = { version = "0.7", features = ["runtime-tokio", "tls-rustls", "sqlite"] }
# FIXME: Wait for the next release of fluent-bundle where
# [`concurrent` module](https://bit.ly/3LlNqJ1) is public.
fluent-bundle = { git = "https://github.com/projectfluent/fluent-rs.git" }
strfmt = "0.2"
anyhow = "1.0.75"