teloxide/examples/redis_remember_bot/Cargo.toml

21 lines
578 B
TOML
Raw Normal View History

2020-04-19 19:47:12 +02:00
[package]
name = "redis_remember_bot"
version = "0.1.0"
authors = ["Maximilian Siling <mouse-art@ya.ru>"]
edition = "2018"
[dependencies]
2020-07-31 17:43:28 +02:00
log = "0.4.8"
pretty_env_logger = "0.4.0"
tokio = { version = "0.2.11", features = ["rt-threaded", "macros"] }
2020-07-01 15:25:10 +02:00
2020-04-19 19:47:12 +02:00
# You can also choose "cbor-serializer" or built-in JSON serializer
teloxide = { path = "../../", features = ["redis-storage", "bincode-serializer"] }
teloxide-macros = { git = "https://github.com/teloxide/teloxide-macros", branch = "master" }
2020-07-24 22:02:40 +02:00
2020-04-19 19:47:12 +02:00
serde = "1.0.104"
2020-07-24 22:02:40 +02:00
futures = "0.3.5"
2020-07-01 15:25:10 +02:00
2020-04-19 19:47:12 +02:00
thiserror = "1.0.15"
2020-07-28 17:00:44 +02:00
derive_more = "0.99.9"