2020-03-30 20:57:19 +02:00
|
|
|
[package]
|
|
|
|
name = "webhook_ping_pong_bot"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Temirkhan Myrzamadi <hirrolot@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4.8"
|
|
|
|
pretty_env_logger = "0.4.0"
|
2021-03-13 17:13:24 +01:00
|
|
|
tokio = { version = "1.3.0", features = ["rt-multi-thread", "macros"] }
|
|
|
|
tokio-stream = "0.1.4"
|
2020-03-30 20:57:19 +02:00
|
|
|
teloxide = { path = "../../" }
|
|
|
|
|
|
|
|
# Used to setup a webhook
|
2021-03-13 17:13:24 +01:00
|
|
|
warp = "0.3.0"
|
2020-03-31 20:26:50 +02:00
|
|
|
reqwest = "0.10.4"
|
|
|
|
serde_json = "1.0.50"
|