forked from Lonami/grammers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "grammers-mtsender"
version = "0.3.0"
authors = ["Lonami Exo <[email protected]>"]
license = "MIT OR Apache-2.0"
description = """
A sender implementation using the Mobile Transport Protocol.
"""
homepage = "https://github.com/Lonami/grammers"
documentation = "https://docs.rs/grammers-mtsender"
repository = "https://github.com/Lonami/grammers"
keywords = ["api", "mtproto", "telegram", "tl"]
categories = ["api-bindings", "network-programming"]
edition = "2021"
[features]
proxy = ["tokio-socks", "trust-dns-resolver", "url"]
[dependencies]
bytes = "1.0.1"
grammers-mtproto = { path = "../grammers-mtproto", version = "0.3.0" }
grammers-tl-types = { path = "../grammers-tl-types", version = "0.3.0", features = [ "tl-mtproto" ] }
log = "0.4.14"
tokio = { version = "1.5.0", features = ["net", "io-util", "sync", "macros", "time"] }
tokio-socks = { version = "0.5.1", optional = true }
trust-dns-resolver = { version = "0.21.2", optional = true }
url = { version = "2.2.2", optional = true }
[dev-dependencies]
simple_logger = { version = "1.11.0", default-features = false, features = ["colors"] }
tokio = { version = "1.5.0", features = ["rt"] }
toml = "0.5.8"