2022-12-04 22:50:36 +00:00
|
|
|
[package]
|
|
|
|
name = "leptos_config"
|
|
|
|
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-08-12 23:25:47 +00:00
|
|
|
version = { workspace = true }
|
2024-02-28 12:19:09 +00:00
|
|
|
rust-version.workspace = true
|
2024-08-12 23:25:47 +00:00
|
|
|
edition.workspace = true
|
2022-12-04 22:50:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
config = { version = "0.14.0", default-features = false, features = [
|
|
|
|
"toml",
|
|
|
|
"convert-case",
|
|
|
|
] }
|
|
|
|
regex = "1.10"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
thiserror = "1.0"
|
|
|
|
typed-builder = "0.19.1"
|
2023-03-09 00:49:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
tokio = { version = "1.39", features = ["rt", "macros"] }
|
|
|
|
tempfile = "3.12"
|
2024-03-30 00:02:52 +00:00
|
|
|
temp-env = { version = "0.3.6", features = ["async_closure"] }
|
2024-07-03 10:46:02 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|