mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
444d1479b0
* feat: add support for MDX * fix: prevent empty server handler error message * doc: add MDX mention to README * feat: update version to v0.7.0
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "tuono_lib"
|
|
version = "0.7.0"
|
|
edition = "2021"
|
|
authors = ["V. Ageno <valerioageno@yahoo.it>"]
|
|
description = "The react/rust fullstack framework"
|
|
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]
|
|
name = "tuono_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ssr_rs = "0.5.5"
|
|
axum = {version = "0.7.5", features = ["json", "ws"]}
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
|
erased-serde = "0.4.5"
|
|
serde_json = "1.0"
|
|
serde_urlencoded = "0.7.1"
|
|
reqwest = {version = "0.12.4", features = ["json", "stream"]}
|
|
once_cell = "1.19.0"
|
|
regex = "1.10.5"
|
|
either = "1.13.0"
|
|
tower-http = {version = "0.5.2", features = ["fs"]}
|
|
|
|
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.7.0"}
|
|
# Match the same version used by axum
|
|
tokio-tungstenite = "0.21.0"
|
|
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
|
|
tungstenite = "0.23.0"
|
|
|