Files
tuono/crates/tuono_lib/Cargo.toml
T

45 lines
1.3 KiB
TOML
Raw Normal View History

2024-05-18 20:45:35 +02:00
[package]
name = "tuono_lib"
2025-01-25 21:16:36 +01:00
version = "0.17.5"
2024-05-18 20:45:35 +02:00
edition = "2021"
authors = ["V. Ageno <valerioageno@yahoo.it>"]
description = "Superfast React fullstack framework"
homepage = "https://tuono.dev"
2024-07-08 09:24:20 +02:00
keywords = [ "react", "typescript", "fullstack", "web", "ssr"]
repository = "https://github.com/tuono-labs/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
[dependencies]
ssr_rs = "0.8.0"
2024-07-07 11:44:36 +02:00
axum = {version = "0.7.5", features = ["json", "ws"]}
2024-12-07 11:10:47 +01:00
axum-extra = {version = "0.9.6", features = ["cookie"]}
2024-07-02 21:59:30 +02:00
tokio = { version = "1.37.0", features = ["full"] }
serde = { version = "1.0.202", features = ["derive"] }
erased-serde = "0.4.5"
serde_json = "1.0"
2024-07-11 21:43:38 +02:00
serde_urlencoded = "0.7.1"
2024-07-07 11:44:36 +02:00
reqwest = {version = "0.12.4", features = ["json", "stream"]}
2024-06-23 20:15:33 +02:00
once_cell = "1.19.0"
regex = "1.10.5"
2024-06-29 11:58:04 +02:00
either = "1.13.0"
tower-http = {version = "0.6.0", features = ["fs"]}
2024-08-19 18:25:00 +02:00
colored = "2.1.0"
2025-01-25 21:16:36 +01:00
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.17.5"}
tuono_internal = {path = "../tuono_internal", version = "0.17.5"}
2024-07-07 11:44:36 +02:00
# Match the same version used by axum
tokio-tungstenite = "0.24.0"
2024-07-07 11:44:36 +02:00
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
tungstenite = "0.24.0"
2024-11-16 09:47:59 +01:00
http = "1.1.0"
pin-project = "1.1.7"
tower = "0.5.1"
2024-07-07 11:44:36 +02:00