summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 6d801751969cb2182585afae0869d1b0597475c9 (plain) (blame)
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
[package]
name = "tdlib-rs"
version = "0.1.1"
authors = ["syn <isaqtm@gmail.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libc = "0.2"
tdlib-sys = { version = "1.7.0", path = "../tdlib-sys" }
thiserror = "1.0"

# TODO: the only thing we need from futures-rs is BoxFuture.
# maybe we should define it ourselves and drop futures dependency
futures = "0.3"

tokio = { version = "1.0", features = ["rt"] }

# TODO: get rid of crossbeam and use std if possible
crossbeam = "0.8"

serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"

# TODO: make logging a feature
log = "0.4"

[dev-dependencies]
tokio = { version = "1.0", features = ["rt", "rt-multi-thread", "macros"] }