-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
54 lines (47 loc) · 1014 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "sval"
version = "2.13.2"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/sval"
description = "Streaming, structured value serialization"
repository = "https://github.com/sval-rs/sval"
readme = "README.md"
keywords = ["serialization", "no_std"]
categories = ["encoding", "no-std"]
[package.metadata.docs.rs]
features = ["std"]
[workspace]
members = [
"derive_macros",
"derive",
"derive/test",
"dynamic",
"ref",
"buffer",
"fmt",
"fmt/test",
"nested",
"serde",
"serde/test",
"json",
"json/test",
"json/bench",
"flatten",
"flatten/bench",
"test",
"experiments",
]
[features]
std = ["alloc"]
alloc = []
derive = ["dep:sval_derive_macros"]
[dependencies.sval_derive_macros]
version = "2.13.2"
path = "derive_macros"
optional = true
[dev-dependencies.sval_derive_macros]
path = "derive_macros"
[dev-dependencies.humantime]
version = "2"