mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-10 20:12:25 +01:00
8522759e68
* Get ready for v0.4.0 * Export teloxide_macros as macros in lib.rs * Use tokio v1.3 in README.md * Return the feature 'macros' back * Export teloxide_macros::teloxide in the prelude * Document the 'macros' feature in README.md * Update src/lib.rs Co-authored-by: Waffle Lapkin <waffle.lapkin@gmail.com> * Update src/prelude.rs Co-authored-by: Waffle Lapkin <waffle.lapkin@gmail.com> * Propagate features from teloxide-core * teloxide-core = 0.2.1 * Fix CI * Require teloxide-core/auto_send instead of teloxide/auto-send * default-features = false (teloxide-core) * Specify each teloxide-core feature separately * Fix Cargo.toml * JSON -> Json, CBOR -> Cbor * Update Cargo.toml Co-authored-by: Waffle Lapkin <waffle.lapkin@gmail.com> Co-authored-by: Waffle Lapkin <waffle.lapkin@gmail.com>
23 lines
538 B
TOML
23 lines
538 B
TOML
[package]
|
|
name = "dialogue_bot"
|
|
version = "0.1.0"
|
|
authors = ["Temirkhan Myrzamadi <hirrolot@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
teloxide = { path = "../../", features = ["frunk", "macros", "auto-send"] }
|
|
|
|
futures = "0.3.5"
|
|
tokio = { version = "1.3.0", features = ["rt-multi-thread", "macros"] }
|
|
|
|
log = "0.4.8"
|
|
pretty_env_logger = "0.4.0"
|
|
derive_more = "0.99.9"
|
|
|
|
frunk = "0.3.1"
|
|
frunk_core = "0.3.1"
|
|
|
|
[profile.release]
|
|
lto = true
|