yuuka 0.6.2

A helper library to generate complex and nested structures by a simple macro
Documentation
[dependencies.anyhow]
version = "^1"

[dependencies.async-trait]
version = "^0.1"

[dependencies.derive_more]
features = ["full"]
version = "^1"

[dependencies.proc-macro2]
features = ["span-locations"]
version = "^1"

[dependencies.quote]
version = "^1"

[dependencies.serde]
features = ["derive"]
version = "^1"

[dependencies.serde_json]
version = "^1"

[dependencies.strum]
features = ["derive"]
version = "^0.26"

[dependencies.syn]
features = ["full"]
version = "^2"

[[example]]
name = "language_pack"
path = "examples/language_pack.rs"

[[example]]
name = "server_router"
path = "examples/server_router.rs"

[lib]
name = "yuuka"
path = "src/lib.rs"
proc-macro = true

[package]
authors = ["langyo <langyo.china@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A helper library to generate complex and nested structures by a simple macro"
edition = "2021"
license = "Apache-2.0"
name = "yuuka"
publish = true
readme = "README.md"
repository = "https://github.com/celestia-island/yuuka"
version = "0.6.2"

[[test]]
name = "anonymous_struct"
path = "tests/anonymous_struct.rs"

[[test]]
name = "array_type_struct"
path = "tests/array_type_struct.rs"

[[test]]
name = "auto_macros"
path = "tests/auto_macros.rs"

[[test]]
name = "default_struct"
path = "tests/default_struct.rs"

[[test]]
name = "enum_type_struct"
path = "tests/enum_type_struct.rs"

[[test]]
name = "extra_derive_struct"
path = "tests/extra_derive_struct.rs"

[[test]]
name = "multi_level_struct"
path = "tests/multi_level_struct.rs"

[[test]]
name = "option_type_struct"
path = "tests/option_type_struct.rs"

[[test]]
name = "reference_type_struct"
path = "tests/reference_type_struct.rs"

[[test]]
name = "single_level_struct"
path = "tests/single_level_struct.rs"

[[test]]
name = "visibility_test"
path = "tests/visibility_test.rs"