-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (39 loc) · 864 Bytes
/
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 = "mtproto"
version = "0.0.1"
authors = ["Connor Hilarides <connorcpu@live.com>"]
license = "MIT/Apache-2.0"
build = "build.rs"
[dependencies]
byteorder = "1.1"
chrono = "0.4"
envy = "0.3"
erased-serde = "0.3"
error-chain = "0.11"
extprim = "1.4"
log = "0.3"
num-traits = "0.1"
openssl = "0.9.11"
rand = "0.3"
serde = "1.0"
serde_bytes = "0.10"
serde_derive = "1.0"
serde_mtproto = { git = "https://github.com/hcpl/serde_mtproto", features = ["extprim"] }
serde_mtproto_derive = { git = "https://github.com/hcpl/serde_mtproto" }
toml = "0.4"
[build-dependencies]
env_logger = "0.4"
error-chain = "0.11"
log = "0.3"
tl_codegen = { path = "tl_codegen" }
[dev-dependencies]
crc = "1.5"
dotenv = "0.10"
env_logger = "0.4"
futures = "0.1"
hyper = "0.11"
pretty_assertions = "0.4"
select = "0.4"
test-logger = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"