-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
38 lines (33 loc) · 863 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
[package]
name = "serde-pickle"
version = "1.2.0"
authors = ["Georg Brandl <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A serde-based serialization library for Python's pickle format"
repository = "https://github.com/birkenfeld/serde-pickle"
documentation = "http://docs.rs/serde-pickle"
keywords = ["pickle", "python", "serde", "serialization"]
edition = "2018"
rust-version = "1.63"
[dependencies]
serde = "1.0.209"
byteorder = "1.5.0"
num-bigint = "0.4.4"
num-traits = "0.2.18"
iter-read = "1.1.0"
criterion = { version = "0.4", optional = true }
[features]
criterion-bench = ["criterion"]
# For the example binary and the test suite.
[dev-dependencies]
serde_derive = "1.0.209"
serde_json = "1.0.127"
rand = "0.7"
quickcheck = "0.9.0"
# for 1.63
regex = "=1.9.6"
[[bench]]
name = "benchmark"
harness = false
[profile.release]
debug = 1