teloxide/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

2020-08-12 17:04:50 +02:00
[package]
name = "teloxide-core"
version = "0.1.0"
edition = "2018"
authors = [
"Temirkhan Myrzamadi <hirrolot@gmail.com>",
"Waffle Lapkin <waffle.lapkin@gmail.com>",
"p0lunin <dmytro.polunin@gmail.com>",
"Mishko torop'izhko",
"Mr-Andersen",
"Sergey Levitin <selevit@gmail.com>",
"Rustem B. <bakirov.com@yandex.ru>",
"Alexey Fedechkin <aleksey-fedechkin@rambler.ru>"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-08-12 18:39:40 +02:00
futures = "0.3.5"
2020-10-01 16:21:30 +02:00
tokio = { version = "0.2.21", features = ["fs", "stream", "full"] }
2020-08-12 18:39:40 +02:00
tokio-util = "0.3.1"
pin-project = "0.4.23"
2020-08-12 18:39:40 +02:00
bytes = "0.5.5"
async-trait = "0.1.36"
reqwest = { version = "0.10.6", features = ["json", "stream"] }
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.55"
serde_with_macros = "1.1.0"
uuid = { version = "0.8.1", features = ["v4"] } # for attaching input files
2020-08-12 18:39:40 +02:00
derive_more = "0.99.9"
mime = "0.3.16"
thiserror = "1.0.20"
2020-09-22 21:54:52 +02:00
once_cell = "1.4.0"
2020-08-12 17:04:50 +02:00
2020-09-30 18:30:04 +02:00
# FIXME(waffle): use crates.io once published
vecrem = { git = "https://github.com/WaffleLapkin/vecrem", rev = "6b9b6f42342df8b75548c6ed387072ff235429b1" }
2020-09-30 18:30:04 +02:00
2020-08-12 17:04:50 +02:00
[features]
# features those require nightly compiler
nightly = []
[package.metadata."docs.rs"]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]