-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 1.1 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
[package]
name = "mini-telegram"
version = "0.1.17"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
authors = ["Yumcoder <https://t.me/yumcoder>"]
keywords = ["telegram", "mtproto", "mtproto-server", "tokio-rs", "tokio"]
repository = "https://github.com/YumcoderCom/mini-telegram"
description = "mini-telegram is an unofficial, monolithic, idiomatic implementation of MTProto (telegram) server built with Rust that compatible with all telegram clients (web, android, iOS, desktop)."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.0"
atoi = "2.0.0"
bytes = "1"
structopt = "0.3.14"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tracing = "0.1.13"
tracing-futures = { version = "0.2.3" }
tracing-subscriber = "0.3.16"
futures = "0.3.21"
[dev-dependencies]
# Enable test-utilities in dev mode only. This is mostly for tests.
tokio = { version = "1", features = ["test-util"] }
[[bin]]
name = "mini-telegram-cli"
path = "src/bin/cli.rs"
[[bin]]
name = "mini-telegram-server"
path = "src/bin/server.rs"