teloxide/examples/admin_bot/Cargo.toml

18 lines
454 B
TOML
Raw Normal View History

2020-02-11 20:35:22 +01:00
[package]
2020-02-13 19:29:26 +01:00
name = "admin_bot"
2020-02-11 20:35:22 +01:00
version = "0.1.0"
authors = ["p0lunin <dmytro.polunin@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
teloxide = { path = "../../", features = ["macros", "auto-send"] }
2020-02-11 20:35:22 +01:00
log = "0.4.8"
2020-02-13 18:23:22 +01:00
pretty_env_logger = "0.4.0"
2021-03-13 17:13:24 +01:00
tokio = { version = "1.3.0", features = ["rt-multi-thread", "macros"] }
2021-07-05 21:16:29 +02:00
chrono = "0.4"
2020-02-11 20:35:22 +01:00
[profile.release]
2021-03-13 17:13:24 +01:00
lto = true