-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
75 lines (61 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "serde_mtproto"
version = "0.3.1"
description = "MTProto [de]serialization for Rust"
authors = ["Nguyen Duc My <hcpl.prog@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/hcpl/serde_mtproto"
documentation = "https://docs.rs/serde_mtproto"
repository = "https://github.com/hcpl/serde_mtproto"
keywords = ["serde", "serialization", "telegram"]
edition = "2018"
include = ["Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "README.md", "src/**/*"]
[badges]
travis-ci = { repository = "hcpl/serde_mtproto" }
[workspace]
members = ["serde_mtproto_derive"]
[build-dependencies]
version_check = "0.1.5"
[dependencies]
byteorder = "1.0"
error-chain = "0.12.1"
log = "0.4"
num-traits = "0.2"
quickcheck = { version = "0.8", optional = true }
serde = "1.0"
serde_bytes = "0.11"
serde_derive = "1.0"
[dev-dependencies]
derivative = "1.0.2"
lazy_static = "1.2"
maplit = "1.0"
pretty_assertions = "0.6"
#quickcheck_derive = "0.2"
quickcheck_derive = { git = "https://github.com/hcpl/quickcheck_derive", branch = "minimum-supported-rustc" }
rand = "0.6"
serde_json = "1.0"
serde_mtproto_derive = { path = "serde_mtproto_derive", version = "=0.3.1" } # Update in lockstep
serde_yaml = "0.8"
toml = "0.5"
version-sync = "0.8"
[features]
default = []
nightly = []
# WARNING: This Cargo feature is not intended for public usage!
# Used to test `serde_mtproto` against new unstable features in Rust language
# and Rust standard library.
test-nightly-regressions = []
[[test]]
name = "fuzz_regressions"
[[test]]
name = "regression_tests"
[[test]]
name = "serde_interop"
[[test]]
name = "version_numbers"
[[test]]
name = "with_quickcheck"
required-features = ["quickcheck"]
[package.metadata.docs.rs]
features = ["quickcheck"]