teloxide/Cargo.toml

65 lines
1.7 KiB
TOML
Raw Normal View History

2019-09-01 22:51:07 +06:00
[package]
2019-12-07 22:30:15 +03:00
name = "teloxide"
2020-02-25 03:05:15 +06:00
version = "0.2.0"
2019-09-01 22:51:07 +06:00
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"
2020-02-19 23:14:45 +06:00
keywords = ["teloxide", "telegram", "telegram-bot", "telegram-bot-api"]
2020-02-14 17:10:49 +06:00
license = "MIT"
2020-02-19 22:37:12 +06:00
exclude = ["media"]
2020-02-19 22:05:04 +06:00
authors = [
"Temirkhan Myrzamadi <hirrolot@gmail.com>",
"Waffle Lapkin <waffle.lapkin@gmail.com>",
"p0lunin <dmytro.polunin@gmail.com>",
2020-02-19 23:14:45 +06:00
"Mishko torop'izhko",
"Mr-Andersen",
2020-02-19 22:05:04 +06:00
"Sergey Levitin <selevit@gmail.com>",
"Rustem B. <bakirov.com@yandex.ru>",
2020-02-19 22:55:24 +06:00
"Alexey Fedechkin <aleksey-fedechkin@rambler.ru>"
2020-02-19 22:05:04 +06:00
]
2020-02-14 17:10:49 +06:00
[badges]
maintenance = { status = "actively-developed" }
2019-09-01 22:51:07 +06:00
[features]
redis-storage = ["redis"]
cbor-serializer = ["serde_cbor"]
bincode-serializer = ["bincode"]
2019-09-01 22:51:07 +06:00
2020-07-26 03:10:48 +06:00
frunk- = ["frunk"]
2019-09-01 22:51:07 +06:00
[dependencies]
2020-07-11 02:10:52 +06:00
serde_json = "1.0.55"
2020-07-10 23:55:12 +06:00
serde = { version = "1.0.114", features = ["derive"] }
2020-07-10 23:55:12 +06:00
tokio = { version = "0.2.21", features = ["full"] }
tokio-util = { version = "0.3.1", features = ["full"] }
2020-07-10 23:55:12 +06:00
reqwest = { version = "0.10.6", 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-07-10 23:55:12 +06:00
bytes = "0.5.5"
2020-01-22 01:41:32 +06:00
mime = "0.3.16"
2020-01-05 02:35:25 +06:00
2020-07-10 23:55:12 +06:00
derive_more = "0.99.9"
thiserror = "1.0.20"
async-trait = "0.1.36"
futures = "0.3.5"
pin-project = "0.4.22"
serde_with_macros = "1.1.0"
2020-07-16 18:59:33 +06:00
redis = { version = "0.16.0", optional = true }
serde_cbor = { version = "0.11.1", optional = true }
2020-07-10 23:55:12 +06:00
bincode = { version = "1.3.1", optional = true }
2020-07-28 20:58:23 +06:00
frunk = { version = "0.3.1", optional = true }
2020-07-27 02:42:08 +06:00
teloxide-macros = "0.3.2"
2020-02-14 14:41:03 +06:00
[dev-dependencies]
smart-default = "0.6.0"
rand = "0.7.3"
pretty_env_logger = "0.4.0"
lazy_static = "1.4.0"