21 lines
633 B
TOML
21 lines
633 B
TOML
[package]
|
|
name = "leptos_axum"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Axum integrations for the Leptos web framework."
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6", features = ["macros"] }
|
|
futures = "0.3"
|
|
http = "0.2.8"
|
|
hyper = "0.14.23"
|
|
leptos = { workspace = true, features = ["ssr"] }
|
|
leptos_meta = { workspace = true, features = ["ssr"] }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
leptos_integration_utils = { workspace = true }
|
|
tokio = { version = "1", features = ["full"] }
|
|
parking_lot = "0.12.1"
|