-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (35 loc) · 1.03 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
[package]
name = "erlang-term"
version = "1.1.0"
authors = ["Thomas <[email protected]>"]
edition = "2018"
description = "Library to convert Erlang External Term Format to Rust objects, without using erlang NIFs."
keywords = ["erlang", "elixir", "serde"]
categories = ["encoding", "parser-implementations"]
repository = "https://github.com/thomas9911/erlang-term"
license = "Unlicense"
readme = "README.md"
exclude = [
".github/*",
"bins/*",
"create_bins.exs"
]
[dependencies]
nom = "7.1"
num-bigint = "0.4"
num-traits = "0.2"
keylist = "0.3"
flate2 = {version = "1.0", optional = true}
serde = {version = "1.0", optional = true}
serde_derive = {version = "1.0", optional = true}
serde_json = {version = "1.0", optional = true}
strum = { version = "0.24", features = ["derive"] }
ordered-float = "3.0.0"
[dev-dependencies]
brunch = "0.2.6"
[features]
serde_impl = ["serde", "serde_derive", "serde_json", "keylist/serde", "num-bigint/serde", "ordered-float/serde"]
zlib = ["flate2"]
[[bench]]
name = "keylist_vs_btree"
harness = false