mirror of
https://github.com/bytedream/serde-inline-default.git
synced 2026-08-04 21:10:40 +02:00
34 lines
716 B
TOML
34 lines
716 B
TOML
[package]
|
|
name = "serde-inline-default"
|
|
version = "1.0.2"
|
|
authors = ["bytedream"]
|
|
edition = "2021"
|
|
rust-version = "1.71.0"
|
|
description = "Serde default values via inline declaration"
|
|
readme = "README.md"
|
|
repository = "https://github.com/bytedream/serde-inline-default"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["serde", "serialization"]
|
|
categories = ["encoding"]
|
|
include = [
|
|
"/Cargo.toml",
|
|
"/LICENSE-APACHE",
|
|
"/LICENSE-MIT",
|
|
"/README.md",
|
|
"/src/**",
|
|
"/tests/**"
|
|
]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "3.0", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|