27 lines
574 B
TOML
27 lines
574 B
TOML
|
[package]
|
||
|
name = "test_bot"
|
||
|
version = "0.1.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
#teloxide = { version = "0.11.3", features = ["macros", "auto-send"] }
|
||
|
teloxide = { version = "0.12.2", features = ["macros", "auto-send"] }
|
||
|
futures = "0.3.5"
|
||
|
log = "0.4"
|
||
|
pretty_env_logger = "0.4.0"
|
||
|
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
|
||
|
tokio-stream = "0.1.8"
|
||
|
derive_more = "0.99.9"
|
||
|
frunk = "0.4"
|
||
|
frunk_core = "0.4"
|
||
|
once_cell = "1.9.0"
|
||
|
anyhow = "1.0.13"
|
||
|
chrono = "*"
|
||
|
sqlite = "*"
|
||
|
lazy_static = "1.4.0"
|
||
|
image = "*"
|
||
|
|
||
|
[profile.release]
|
||
|
lto = true
|
||
|
codegen-units = 1
|