2019-09-01 22:51:07 +06:00
|
|
|
[package]
|
2019-12-07 22:30:15 +03:00
|
|
|
name = "teloxide"
|
2019-09-01 22:51:07 +06:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-02-14 17:10:49 +06:00
|
|
|
description = "An elegant Telegram bots framework for Rust"
|
|
|
|
repository = "https://github.com/teloxide/teloxide"
|
|
|
|
documentation = "https://docs.rs/teloxide/"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["teloxide", "telegram", "telegram-bot-framework", "telegram-bot-api"]
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
2019-09-01 22:51:07 +06:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-05 02:35:25 +06:00
|
|
|
serde_json = "1.0.44"
|
2019-10-09 22:31:50 +03:00
|
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
2019-10-11 15:01:58 +03:00
|
|
|
|
2020-02-18 04:19:16 +06:00
|
|
|
tokio = { version = "0.2.11", features = ["full"] }
|
2020-01-05 02:35:25 +06:00
|
|
|
tokio-util = { version = "0.2.0", features = ["full"] }
|
2019-10-11 15:01:58 +03:00
|
|
|
|
2020-02-19 05:46:49 +06:00
|
|
|
reqwest = { version = "0.10", features = ["json", "stream"] }
|
2020-01-05 02:35:25 +06:00
|
|
|
log = "0.4.8"
|
2020-02-18 04:19:16 +06:00
|
|
|
lockfree = "0.5.1"
|
2020-01-05 02:35:25 +06:00
|
|
|
bytes = "0.5.3"
|
2020-01-22 01:41:32 +06:00
|
|
|
mime = "0.3.16"
|
2020-01-05 02:35:25 +06:00
|
|
|
|
|
|
|
derive_more = "0.99.2"
|
|
|
|
thiserror = "1.0.9"
|
|
|
|
async-trait = "0.1.22"
|
|
|
|
futures = "0.3.1"
|
|
|
|
pin-project = "0.4.6"
|
|
|
|
serde_with_macros = "1.0.1"
|
2020-01-11 21:46:13 +02:00
|
|
|
either = "1.5.3"
|
2020-02-03 17:14:59 +06:00
|
|
|
|
2020-02-14 14:41:03 +06:00
|
|
|
teloxide-macros = { path = "teloxide-macros" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
smart-default = "0.6.0"
|
|
|
|
rand = "0.7.3"
|
|
|
|
pretty_env_logger = "0.4.0"
|
2020-02-19 05:46:49 +06:00
|
|
|
lazy_static = "1.4.0"
|