mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
00dc72e412
Fixes of build on CI (fmt, never-ty)
25 lines
624 B
TOML
25 lines
624 B
TOML
[package]
|
|
name = "teloxide"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.10.0-alpha.1", features = ["json", "unstable-stream"] }
|
|
serde_json = "1.0.41"
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
derive_more = "0.15.0"
|
|
tokio = "0.2.0-alpha.6"
|
|
bytes = "0.4.12"
|
|
log = "0.4.8"
|
|
pin-project = "0.4.0-alpha.7"
|
|
futures-preview = "0.3.0-alpha.19"
|
|
async-trait = "0.1.13"
|
|
thiserror = "1.0.2"
|
|
serde_with_macros = "1.0.1"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
unstable-stream = [] # add streams to public API
|