mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-26 05:12:46 -07:00
29 lines
612 B
TOML
29 lines
612 B
TOML
[package]
|
|
name = "tuono_lib"
|
|
version = "0.1.4"
|
|
edition = "2021"
|
|
authors = ["V. Ageno <valerioageno@yahoo.it>"]
|
|
description = "The react/rust fullstack framework"
|
|
homepage = "https://github.com/Valerioageno/tuono"
|
|
readme = "../../README.md"
|
|
license-file = "../../LICENSE.md"
|
|
categories = ["web-programming"]
|
|
include = [
|
|
"src/*.rs",
|
|
"Cargo.toml"
|
|
]
|
|
|
|
[lib]
|
|
name = "tuono_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ssr_rs = "0.5.2"
|
|
axum = "0.7.5"
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
|
erased-serde = "0.4.5"
|
|
serde_json = "1.0"
|
|
|
|
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.1.4"}
|
|
|