mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
df92ef5296
* 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
24 lines
540 B
TOML
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"
|