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>"]
|
2024-11-16 11:08:50 +01:00
|
|
|
description = "Superfast React fullstack framework"
|
|
|
|
|
homepage = "https://tuono.dev"
|
2024-07-08 09:24:20 +02:00
|
|
|
keywords = [ "react", "typescript", "fullstack", "web", "ssr"]
|
2024-11-30 14:15:36 +01:00
|
|
|
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]
|
2025-01-13 18:26:50 +01:00
|
|
|
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"] }
|
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-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"
|
2024-10-12 13:03:44 +02:00
|
|
|
tower-http = {version = "0.6.0", features = ["fs"]}
|
2024-08-19 18:25:00 +02:00
|
|
|
colored = "2.1.0"
|
2024-06-15 12:15:51 +02:00
|
|
|
|
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
|
2024-10-12 13:03:59 +02:00
|
|
|
tokio-tungstenite = "0.24.0"
|
2024-07-07 11:44:36 +02:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
|
2024-10-12 13:41:03 +02:00
|
|
|
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
|
|
|
|