Files
tuono/crates/tuono_lib_macros/Cargo.toml
T
Valerio Ageno df92ef5296 Add support for custom global state (#111)
* feat: add 'has_main_file' to App struct

* feat: handle custom state from the main.rs file

* feat: update tutorial template with new setup

* fix: apply clippy hints

* feat: add ApplicationState mention to documentation website

* feat: update version to v0.13.0
2024-11-17 16:28:56 +01:00

24 lines
540 B
TOML

[package]
name = "tuono_lib_macros"
version = "0.13.0"
edition = "2021"
description = "Superfast React fullstack framework"
homepage = "https://tuono.dev"
keywords = [ "react", "typescript", "fullstack", "web", "ssr"]
repository = "https://github.com/Valerioageno/tuono"
readme = "../../README.md"
license-file = "../../LICENSE.md"
categories = ["web-programming"]
include = [
"src/*.rs",
"Cargo.toml"
]
[lib]
crate_type = ["proc-macro"]
proc-marco = true
[dependencies]
syn = { version = "2.0.0", features = ["full"] }
quote = "1.0"