forked from bincode-org/bincode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (29 loc) · 948 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
[package]
name = "mincode"
version = "0.6.0"
authors = ["Ty Overby <[email protected]>", "Francesco Mazzoli <[email protected]>", "Boscop <[email protected]>"]
repository = "https://github.com/Boscop/mincode"
documentation = "http://tyoverby.github.io/bincode/bincode/"
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
license = "MIT"
description = "A binary serialization / deserialization strategy and implementation with serde and rustc-serialize backends."
[dependencies]
byteorder = "0.5.*"
num-traits = "0.1.32"
# leb128 = "0.2.*"
leb128 = { git = 'https://github.com/Boscop/leb128' }
bit-vec = "0.4.*"
# bitpack = "0.1.*"
# bitpack = { git = 'https://github.com/Boscop/bitpack' }
conv = "0.3.*"
half = "*"
[dependencies.rustc-serialize]
version = "0.3.*"
optional = true
[dependencies.serde]
version = "0.8.*"
optional = true
[dev-dependencies]
serde_derive = "0.8.*"
[features]
default = ["rustc-serialize", "serde"]