-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 736 Bytes
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
[package]
name = "serde_default_utils"
version = "0.3.1"
authors = ["Oleks Pickle <22867443+olekspickle@users.noreply.github.com>"]
edition = "2021"
categories = ["encoding", "no-std", "no-std::no-alloc"]
description = "A set of simple helper functions to cut corners with serde_default"
keywords = ["serde", "serialization", "no_std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/olekspickle/serde_default_utils"
[features]
default = ["std"]
std = []
inline = ["serde-inline-default"]
[dependencies]
paste = "1"
serde-inline-default = { version = "0.2", optional = true }
[dev-dependencies]
expect-test = "1.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_default_utils = { path = "." }