| # This file is part of ICU4X. For terms of use, please see the file |
| # called LICENSE at the top level of the ICU4X source tree |
| # (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). |
| |
| [package] |
| name = "databake" |
| description = "Trait that lets structs represent themselves as (const) Rust expressions" |
| version = "0.2.1" |
| categories = ["rust-patterns", "memory-management", "development-tools::procedural-macro-helpers", "development-tools::build-utils"] |
| keywords = ["data-loading", "zerocopy", "serialization", "const"] |
| |
| authors.workspace = true |
| include.workspace = true |
| license.workspace = true |
| repository.workspace = true |
| edition = "2021" |
| rust-version = "1.82" |
| |
| [package.metadata.workspaces] |
| independent = true |
| |
| [package.metadata.docs.rs] |
| all-features = true |
| |
| [features] |
| derive = ["dep:databake-derive"] |
| |
| [dependencies] |
| proc-macro2 = { workspace = true } |
| quote = { workspace = true } |
| databake-derive = { workspace = true, optional = true} |
| |
| [lints] |
| workspace = true |