[package]
edition = "2024"
rust-version = "1.85"
name = "oxide_generator_rs"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for Oxide stores, actions, and reducers (FRB-friendly surface generation)."
homepage = "https://github.com/Oxide-Stack/Oxide"
documentation = "https://docs.rs/oxide_generator_rs"
readme = "README.md"
keywords = [
"oxide",
"proc-macro",
"state-management",
"redux",
"flutter",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Oxide-Stack/Oxide"
[features]
default = ["frb"]
frb = []
full = [
"frb",
"state-persistence",
"isolated-channels",
]
isolated-channels = []
navigation-binding = []
state-persistence = []
[lib]
name = "oxide_generator_rs"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "compile"
path = "tests/compile.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
]
[dev-dependencies.oxide_core]
version = "0.4.0"
features = [
"state-persistence",
"isolated-channels",
]
[dev-dependencies.trybuild]
version = "1.0"