mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-15 12:02:45 +01:00
29 lines
1.6 KiB
Text
29 lines
1.6 KiB
Text
## Cargo features
|
|
|
|
| Feature | Description |
|
|
|----------|----------|
|
|
| `redis-storage` | Enables the [Redis] storage support for dialogues.|
|
|
| `sqlite-storage` | Enables the [Sqlite] storage support for dialogues. |
|
|
| `cbor-serializer` | Enables the [CBOR] serializer for dialogues. |
|
|
| `bincode-serializer` | Enables the [Bincode] serializer for dialogues. |
|
|
| `macros` | Re-exports macros from [`teloxide-macros`]. |
|
|
| `native-tls` | Enables the [`native-tls`] TLS implementation (enabled by default). |
|
|
| `rustls` | Enables the [`rustls`] TLS implementation. |
|
|
| `ctrlc_handler` | Enables the [`Dispatcher::setup_ctrlc_handler`](dispatching::Dispatcher::setup_ctrlc_handler) function. |
|
|
| `auto-send` | Enables the [`AutoSend`](adaptors::AutoSend) bot adaptor. |
|
|
| `throttle` | Enables the [`Throttle`](adaptors::Throttle) bot adaptor. |
|
|
| `cache-me` | Enables the [`CacheMe`](adaptors::CacheMe) bot adaptor. |
|
|
| `trace-adaptor` | Enables the [`Trace`](adaptors::Trace) bot adaptor. |
|
|
| `erased` | Enables the [`ErasedRequester`](adaptors::ErasedRequester) bot adaptor. |
|
|
| `full` | Enables all the features except `nightly`. |
|
|
| `nightly` | Enables nightly-only features (see the [teloxide-core features]). |
|
|
|
|
[Redis]: https://redis.io/
|
|
[Sqlite]: https://www.sqlite.org/
|
|
[CBOR]: https://en.wikipedia.org/wiki/CBOR
|
|
[Bincode]: https://github.com/servo/bincode
|
|
[`teloxide-macros`]: https://github.com/teloxide/teloxide-macros
|
|
[`native-tls`]: https://docs.rs/native-tls
|
|
[`rustls`]: https://docs.rs/rustls
|
|
[`teloxide::utils::UpState`]: utils::UpState
|
|
[teloxide-core features]: https://docs.rs/teloxide-core/latest/teloxide_core/#cargo-features
|