teloxide/examples/admin_bot/Cargo.toml

17 lines
426 B
TOML
Raw Normal View History

2020-02-11 21:35:22 +02:00
[package]
2020-02-14 00:29:26 +06:00
name = "admin_bot"
2020-02-11 21:35:22 +02: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]
log = "0.4.8"
2020-02-13 23:23:22 +06:00
pretty_env_logger = "0.4.0"
2021-03-13 22:13:24 +06:00
tokio = { version = "1.3.0", features = ["rt-multi-thread", "macros"] }
teloxide = { path = "../../", features = ["macros"] }
2020-02-11 21:35:22 +02:00
[profile.release]
2021-03-13 22:13:24 +06:00
lto = true