2020-08-12 17:04:50 +02:00
|
|
|
[package]
|
|
|
|
name = "teloxide-core"
|
2021-02-16 22:06:37 +01:00
|
|
|
description = "Core part of the `teloxide` library - telegram bot API client"
|
2022-03-07 19:43:24 +01:00
|
|
|
version = "0.4.3"
|
2020-08-12 17:04:50 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
2021-02-16 22:06:37 +01:00
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/teloxide/teloxide-core/"
|
|
|
|
homepage = "https://github.com/teloxide/teloxide-core/"
|
|
|
|
documentation = "https://docs.rs/teloxide-core/"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
keywords = ["telegram", "bot", "tba"]
|
2021-02-16 22:17:14 +01:00
|
|
|
categories = ["api-bindings", "asynchronous"]
|
2021-02-16 22:06:37 +01:00
|
|
|
|
|
|
|
exclude = [
|
|
|
|
".github/*",
|
|
|
|
"netlify.toml",
|
|
|
|
]
|
|
|
|
|
2020-08-12 17:04:50 +02:00
|
|
|
# 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"
|
2021-07-04 09:37:59 +02:00
|
|
|
tokio = { version = "1.8.0", features = ["fs"] }
|
2021-01-07 13:58:51 +01:00
|
|
|
tokio-util = "0.6.0"
|
|
|
|
pin-project = "1.0.3"
|
|
|
|
bytes = "1.0.0"
|
2021-03-26 22:47:03 +01:00
|
|
|
reqwest = { version = "0.11.0", features = ["json", "stream", "multipart"], default-features = false }
|
2021-05-04 14:55:03 +02:00
|
|
|
url = { version = "2", features = ["serde"] }
|
2021-03-13 12:46:16 +01:00
|
|
|
log = "0.4"
|
2020-08-12 18:39:40 +02:00
|
|
|
|
|
|
|
serde = { version = "1.0.114", features = ["derive"] }
|
|
|
|
serde_json = "1.0.55"
|
2021-03-16 13:36:46 +01:00
|
|
|
serde_with_macros = "1.4.1"
|
2020-08-15 23:07:19 +02:00
|
|
|
uuid = { version = "0.8.1", features = ["v4"] } # for attaching input files
|
2020-11-24 17:15:46 +01:00
|
|
|
|
2020-08-12 18:39:40 +02:00
|
|
|
derive_more = "0.99.9"
|
|
|
|
mime = "0.3.16"
|
|
|
|
thiserror = "1.0.20"
|
2021-01-07 13:58:51 +01:00
|
|
|
once_cell = "1.5.0"
|
2022-01-13 14:46:37 +01:00
|
|
|
takecell = "0.1"
|
2022-01-13 13:11:50 +01:00
|
|
|
take_mut = "0.2"
|
2022-01-13 14:46:37 +01:00
|
|
|
rc-box = "1.1.1"
|
2020-10-02 17:37:15 +02:00
|
|
|
never = "0.1.0"
|
2021-10-23 17:36:42 +02:00
|
|
|
chrono = { version = "0.4.19", default-features = false }
|
2021-07-08 12:04:40 +02:00
|
|
|
either = "1.6.1"
|
2021-12-29 18:36:08 +01:00
|
|
|
bitflags = { version = "1.2" }
|
2020-08-12 17:04:50 +02:00
|
|
|
|
2021-01-12 11:13:53 +01:00
|
|
|
vecrem = { version = "0.1", optional = true }
|
2020-09-30 18:30:04 +02:00
|
|
|
|
2021-07-12 15:58:51 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
pretty_env_logger = "0.4"
|
2021-11-20 17:33:22 +01:00
|
|
|
tokio = { version = "1.8.0", features = ["fs", "macros"] }
|
2021-07-12 15:58:51 +02:00
|
|
|
|
2020-08-12 17:04:50 +02:00
|
|
|
[features]
|
2021-01-21 21:45:07 +01:00
|
|
|
default = ["native-tls"]
|
2020-10-20 14:33:22 +02:00
|
|
|
|
2020-11-11 22:02:51 +01:00
|
|
|
rustls = ["reqwest/rustls-tls"]
|
2020-11-11 18:16:08 +01:00
|
|
|
native-tls = ["reqwest/native-tls"]
|
|
|
|
|
2020-10-20 14:33:22 +02:00
|
|
|
# Features which require nightly compiler.
|
|
|
|
#
|
|
|
|
# Currently the only used compiler feature is feature(type_alias_impl_trait)
|
|
|
|
# which allow implementing `Future`s without boxing.
|
2020-08-12 17:04:50 +02:00
|
|
|
nightly = []
|
|
|
|
|
2020-10-20 14:33:22 +02:00
|
|
|
# Throttling bot adaptor
|
2021-01-12 11:13:53 +01:00
|
|
|
throttle = ["vecrem"]
|
2020-10-20 14:33:22 +02:00
|
|
|
|
2021-07-10 16:41:20 +02:00
|
|
|
# Trace bot adaptor
|
2021-12-29 18:36:08 +01:00
|
|
|
trace_adaptor = []
|
2021-07-10 16:41:20 +02:00
|
|
|
|
2021-07-12 15:58:51 +02:00
|
|
|
# Erased bot adaptor
|
|
|
|
erased = []
|
|
|
|
|
2020-10-20 14:33:22 +02:00
|
|
|
# CacheMe bot adaptor
|
|
|
|
cache_me = []
|
|
|
|
|
|
|
|
# AutoSend bot adaptor
|
|
|
|
auto_send = []
|
|
|
|
|
2022-01-31 16:16:44 +01:00
|
|
|
# All features except nightly and tls-related
|
2021-07-12 15:58:51 +02:00
|
|
|
full = ["throttle", "trace_adaptor", "erased", "cache_me", "auto_send"]
|
2020-10-20 14:33:22 +02:00
|
|
|
|
2021-05-08 23:43:16 +02:00
|
|
|
[package.metadata.docs.rs]
|
2022-01-31 16:16:44 +01:00
|
|
|
features = ["full", "nightly", "tokio/macros", "tokio/rt-multi-thread"]
|
2021-01-07 12:58:48 +01:00
|
|
|
rustdoc-args = ["--cfg", "docsrs", "-Znormalize-docs"]
|
2021-01-13 14:12:04 +01:00
|
|
|
|
2022-01-31 16:16:44 +01:00
|
|
|
# https://github.com/rust-lang/rust/issues/88791
|
|
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
|
|
|
|
|
2021-01-13 14:12:04 +01:00
|
|
|
[[example]]
|
|
|
|
name = "self_info"
|
|
|
|
required-features = ["tokio/macros", "tokio/rt-multi-thread", "auto_send"]
|
2021-07-12 15:58:51 +02:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "erased"
|
|
|
|
required-features = ["tokio/macros", "tokio/rt-multi-thread", "auto_send", "erased"]
|