-
Notifications
You must be signed in to change notification settings - Fork 124
/
Cargo.toml
46 lines (42 loc) · 1.27 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
[package]
name = "ron"
# Memo: update version in src/lib.rs too (doc link)
version = "0.9.0-alpha.0"
license = "MIT OR Apache-2.0"
keywords = ["parser", "serde", "serialization"]
authors = [
"Christopher Durham <[email protected]>",
"Dzmitry Malyshau <[email protected]>",
"Thomas Schaller <[email protected]>",
"Juniper Tyree <[email protected]>",
]
edition = "2021"
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/"
rust-version = "1.64.0"
[features]
default = []
integer128 = []
[dependencies]
# FIXME @juntyr remove base64 once old byte strings are fully deprecated
base64 = "0.22"
bitflags = { version = "2.0", features = ["serde"] }
indexmap = { version = "2.0", features = ["serde"], optional = true }
# serde supports i128/u128 from 1.0.60 onwards
serde = "1.0.60"
serde_derive = "1.0"
unicode-ident = "1.0"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
option_set = "0.2"
typetag = "0.2"
bytes = { version = "1.3", features = ["serde"] }
[package.metadata.docs.rs]
features = ["integer128", "indexmap"]
rustdoc-args = ["--generate-link-to-definition"]