teloxide/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2019-09-01 18:51:07 +02:00
[package]
2019-12-07 20:30:15 +01:00
name = "teloxide"
2019-09-01 18:51:07 +02:00
version = "0.1.0"
edition = "2018"
2020-02-14 12:10:49 +01: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 18:51:07 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-01-04 21:35:25 +01:00
serde_json = "1.0.44"
2019-10-09 21:31:50 +02:00
serde = { version = "1.0.101", features = ["derive"] }
2020-02-17 23:19:16 +01:00
tokio = { version = "0.2.11", features = ["full"] }
2020-01-04 21:35:25 +01:00
tokio-util = { version = "0.2.0", features = ["full"] }
2020-01-19 14:45:48 +01:00
reqwest = { version = "0.10", features = ["json", "stream", "native-tls-vendored"] }
2020-01-04 21:35:25 +01:00
log = "0.4.8"
2020-02-17 23:19:16 +01:00
lockfree = "0.5.1"
2020-01-04 21:35:25 +01:00
bytes = "0.5.3"
2020-01-21 20:41:32 +01:00
mime = "0.3.16"
2020-01-04 21:35:25 +01: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 20:46:13 +01:00
either = "1.5.3"
2020-02-14 09:41:03 +01: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-17 23:19:16 +01:00
lazy_static = "1.4.0"