-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
37 lines (36 loc) · 876 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
35
36
37
[package]
license = "MIT"
edition = "2021"
version = "0.1.0"
readme = "README.md"
name = "world-id-telegram"
authors = ["Miguel Piedrafita <[email protected]>"]
repository = "https://github.com/worldcoin/world-id-telegram"
description = "Add sybil-resistance to Telegram groups with World ID."
keywords = [
"telegram",
"bot",
"captcha",
"group",
"supergroup",
"world-id",
"worldcoin",
]
[dependencies]
log = "0.4"
rand = "0.8"
url = "2.4.1"
axum = "0.7.3"
indoc = "2.0.4"
dashmap = "5.5"
dotenvy = "0.15.7"
serde_with = "3.3"
reqwest = "0.11.22"
posthog-rs = "0.2.2"
serde_json = "1.0.108"
humantime-serde = "1.1"
pretty_env_logger = "0.5"
tokio = { version = "1.32", features = ["full"] }
config = { version = "0.13", features = ["toml"] }
serde = { version = "1.0", features = ["derive"] }
teloxide = { version = "0.12", features = ["macros"] }