2024-05-18 20:45:35 +02:00
|
|
|
[package]
|
|
|
|
|
name = "tuono_lib"
|
2024-07-02 21:59:30 +02:00
|
|
|
version = "0.3.1"
|
2024-05-18 20:45:35 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["V. Ageno <valerioageno@yahoo.it>"]
|
2024-05-25 12:03:03 +02:00
|
|
|
description = "The react/rust fullstack framework"
|
2024-06-25 08:42:04 +03:00
|
|
|
repository = "https://github.com/Valerioageno/tuono"
|
2024-05-25 12:03:03 +02:00
|
|
|
readme = "../../README.md"
|
|
|
|
|
license-file = "../../LICENSE.md"
|
2024-06-27 17:52:32 +02:00
|
|
|
categories = ["web-programming"]
|
2024-05-25 12:03:03 +02:00
|
|
|
include = [
|
|
|
|
|
"src/*.rs",
|
|
|
|
|
"Cargo.toml"
|
|
|
|
|
]
|
2024-05-18 20:45:35 +02:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "tuono_lib"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-27 17:46:19 +02:00
|
|
|
ssr_rs = "0.5.5"
|
2024-07-02 21:59:30 +02:00
|
|
|
axum = {version = "0.7.5", features = ["json"]}
|
|
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2024-05-19 12:22:56 +02:00
|
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
2024-05-19 20:32:19 +02:00
|
|
|
erased-serde = "0.4.5"
|
2024-05-19 12:22:56 +02:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
2024-07-02 21:59:30 +02:00
|
|
|
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.3.1"}
|
2024-06-23 20:15:33 +02:00
|
|
|
once_cell = "1.19.0"
|
|
|
|
|
lazy_static = "1.5.0"
|
|
|
|
|
regex = "1.10.5"
|
2024-06-29 11:58:04 +02:00
|
|
|
either = "1.13.0"
|
2024-07-02 21:59:30 +02:00
|
|
|
tower-http = {version = "0.5.2", features = ["fs"]}
|
2024-06-15 12:15:51 +02:00
|
|
|
|