2022-12-04 22:50:36 +00:00
|
|
|
[package]
|
|
|
|
name = "leptos_config"
|
2023-01-12 14:57:08 +00:00
|
|
|
version = { workspace = true }
|
2022-12-04 22:50:36 +00:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Greg Johnston"]
|
|
|
|
license = "MIT"
|
2023-01-10 02:59:13 +00:00
|
|
|
repository = "https://github.com/leptos-rs/leptos"
|
2023-02-03 17:51:26 +00:00
|
|
|
description = "Configuration for the Leptos web framework."
|
2023-01-17 17:05:09 +00:00
|
|
|
readme = "../README.md"
|
2024-02-28 12:19:09 +00:00
|
|
|
rust-version.workspace = true
|
2022-12-04 22:50:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-30 00:02:52 +00:00
|
|
|
config = { version = "0.14", default-features = false, features = ["toml", "convert-case"] }
|
2022-12-20 20:14:42 +00:00
|
|
|
regex = "1.7.0"
|
|
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
|
|
thiserror = "1.0.38"
|
2023-10-30 01:49:48 +00:00
|
|
|
typed-builder = "0.18"
|
2023-03-09 00:49:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["rt", "macros"] }
|
2023-03-09 21:44:27 +00:00
|
|
|
tempfile = "3"
|
2024-03-30 00:02:52 +00:00
|
|
|
temp-env = { version = "0.3.6", features = ["async_closure"] }
|