teloxide/examples/sqlite_remember_bot/Cargo.toml

20 lines
555 B
TOML
Raw Normal View History

2020-10-24 18:57:51 +02:00
[package]
name = "sqlite_remember_bot"
version = "0.1.0"
2020-10-24 19:18:13 +02:00
authors = ["Maximilian Siling <mouse-art@ya.ru>", "Sergey Levitin <selevit@gmail.com>"]
2020-10-24 18:57:51 +02:00
edition = "2018"
[dependencies]
# You can also choose "cbor-serializer" or built-in JSON serializer
teloxide = { path = "../../", features = ["sqlite-storage", "bincode-serializer", "redis-storage", "macros"] }
2020-10-24 18:57:51 +02:00
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"] }
2020-10-24 18:57:51 +02:00
serde = "1.0.104"
futures = "0.3.5"
thiserror = "1.0.15"
derive_more = "0.99.9"