forked from Lonami/grammers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.51 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "grammers-client"
version = "0.3.0"
authors = ["Lonami Exo <[email protected]>"]
license = "MIT OR Apache-2.0"
description = """
A high level client to interact with Telegram's API.
"""
homepage = "https://github.com/Lonami/grammers"
documentation = "https://docs.rs/grammers-client"
repository = "https://github.com/Lonami/grammers"
keywords = ["mtproto", "telegram", "tl"]
categories = ["api-bindings"]
edition = "2021"
[features]
markdown = ["pulldown-cmark"]
html = ["html5ever"]
proxy = ["grammers-mtsender/proxy"]
[dependencies]
chrono = "0.4.19"
futures-util = "0.3.15"
grammers-crypto = { path = "../grammers-crypto", version = "0.3.0" }
grammers-mtproto = { path = "../grammers-mtproto", version = "0.3.0" }
grammers-mtsender = { path = "../grammers-mtsender", version = "0.3.0" }
grammers-session = { path = "../grammers-session", version = "0.3.0" }
grammers-tl-types = { path = "../grammers-tl-types", version = "0.3.0", features = ["tl-mtproto"] }
html5ever = { version = "0.25.1", optional = true }
locate-locale = "0.1.0"
log = "0.4.14"
md5 = "0.7.0"
mime_guess = "2.0.3"
os_info = { version = "3.0.4", default_features = false }
pin-project-lite = "0.2"
pulldown-cmark = { version = "0.8.0", default-features = false, optional = true }
tokio = { version = "1.5.0", features = ["sync", "fs", "macros", "time", "sync", "rt"] }
[dev-dependencies]
simple_logger = { version = "1.11.0", default-features = false, features = ["colors"] }
tokio = { version = "1.5.0", features = ["rt", "signal"] }
toml = "0.5.8"