forked from ron-rs/ron
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 836 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
[package]
name = "ron"
# Memo: update version in src/lib.rs too (doc link)
version = "0.6.0"
license = "MIT/Apache-2.0"
keywords = ["parser", "serde", "serialization"]
authors = [
"Christopher Durham <[email protected]>",
"Dzmitry Malyshau <[email protected]>",
"Thomas Schaller <[email protected]>",
]
edition = "2018"
description = "Rusty Object Notation"
categories = ["encoding"]
readme = "README.md"
homepage = "https://github.com/ron-rs/ron"
repository = "https://github.com/ron-rs/ron"
documentation = "https://docs.rs/ron/"
exclude = ["bors.toml", ".travis.yml"]
[lib]
name = "ron"
[dependencies]
base64 = "0.12"
bitflags = "1.0.4"
indexmap = { version = "1.0.2", features = ["serde-1"], optional = true }
serde = { version = "1.0.60", features = ["serde_derive"] }
[dev-dependencies]
serde_bytes = "0.11"
serde_json = "1"