[dependencies._macros]
package = "yuuka-macros"
version = "^0"
[dependencies.anyhow]
version = "^1"
[dependencies.async-trait]
version = "^0.1"
[dependencies.derive_more]
features = ["full"]
version = "^1"
[dependencies.serde]
features = ["derive"]
version = "^1"
[dependencies.serde_json]
version = "^1"
[dependencies.strum]
features = ["derive"]
version = "^0.26"
[lib]
crate-type = ["cdylib", "rlib"]
name = "yuuka"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = 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 = false
repository = "https://github.com/celestia-island/yuuka"
version = "0.2.2"
[[test]]
name = "anonymous_struct"
path = "tests/anonymous_struct.rs"
[[test]]
name = "array_type_struct"
path = "tests/array_type_struct.rs"
[[test]]
name = "default_struct"
path = "tests/default_struct.rs"
[[test]]
name = "enum_type_struct"
path = "tests/enum_type_struct.rs"
[[test]]
name = "multi_level_struct"
path = "tests/multi_level_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"