-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (50 loc) · 1.77 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
[package]
name = "serde_edn"
version = "1.0.34" # remember to update html_root_url
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A edn serialization file format"
repository = "https://github.com/serde-rs/edn"
documentation = "http://docs.serde.rs/serde_edn/"
keywords = ["edn", "serde", "serialization"]
categories = ["encoding"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[package.metadata.docs.rs]
features = ["raw_value"]
[package.metadata.playground]
features = ["raw_value"]
[badges]
travis-ci = { repository = "serde-rs/edn" }
appveyor = { repository = "serde-rs/edn" }
[dependencies]
serde = "1.0.60"
indexmap = { version = "1.0", optional = true }
itoa = "0.4.3"
ryu = "0.2"
uuid = "0.7.4"
float-cmp = "0.4.0"
hashbrown = "0.5"
#serde_edn_macros = { path = "./macros" }
[dev-dependencies]
compiletest_rs = { version = "0.3", features = ["stable"] }
criterion="0.2"
serde_bytes = "0.10"
serde_json = "1.0"
serde_derive = "1.0"
[[bench]]
name = "bench"
harness = false
### FEATURES #################################################################
[features]
default = []
# Use a different representation for the map type of serde_edn::Value.
# This allows data to be read into a Value and written back to a edn string
# while preserving the order of map keys in the input.
preserve_order = ["indexmap"]
# Use an arbitrary precision number representation for serde_edn::Number. This
# allows edn numbers of arbitrary size/precision to be read into a Number and
# written back to a edn string without loss of precision.
arbitrary_precision = []
# Provide a RawValue type that can hold unprocessed edn during deserialization.
raw_value = []