Files
tuono/crates/tuono_lib/Cargo.toml
T

49 lines
1.4 KiB
TOML
Raw Normal View History

2024-05-18 20:45:35 +02:00
[package]
name = "tuono_lib"
2025-04-20 11:05:30 +02:00
version = "0.19.4"
2025-03-29 10:50:58 +01:00
edition = "2024"
2024-05-18 20:45:35 +02:00
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 = [
2025-03-09 17:58:45 +01:00
"src/**/*.rs",
2024-05-25 12:03:03 +02:00
"Cargo.toml"
]
2024-05-18 20:45:35 +02:00
[dependencies]
2025-03-27 19:59:39 +01:00
ssr_rs = "0.8.2"
2025-02-26 19:01:10 +01:00
axum = {version = "0.8.1", features = ["json", "ws"]}
axum-extra = {version = "0.10.0", 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"]}
colored = "3.0.0"
2025-04-20 11:05:30 +02:00
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.19.4"}
tuono_internal = {path = "../tuono_internal", version = "0.19.4"}
2024-07-07 11:44:36 +02:00
# Match the same version used by axum
2025-02-26 19:01:10 +01:00
tokio-tungstenite = "0.26.0"
2024-07-07 11:44:36 +02:00
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
2025-02-26 19:01:10 +01:00
tungstenite = "0.26.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
2025-01-28 19:08:18 +01:00
[dev-dependencies]
fs_extra = "1.3.0"
tempfile = "3.14.0"
serial_test = "3.0.0"