leptos/leptos_config/Cargo.toml

29 lines
767 B
TOML
Raw Permalink Normal View History

[package]
name = "leptos_config"
authors = ["Greg Johnston"]
license = "MIT"
2023-01-10 02:59:13 +00:00
repository = "https://github.com/leptos-rs/leptos"
description = "Configuration for the Leptos web framework."
readme = "../README.md"
version = { workspace = true }
2024-02-28 12:19:09 +00:00
rust-version.workspace = true
edition.workspace = true
[dependencies]
config = { version = "0.14.1", default-features = false, features = [
2024-08-11 00:01:41 +00:00
"toml",
"convert-case",
] }
regex = "1.11"
serde = { version = "1.0", features = ["derive", "rc"] }
thiserror = "2.0"
typed-builder = "0.20.0"
[dev-dependencies]
tokio = { version = "1.41", features = ["rt", "macros"] }
tempfile = "3.13"
temp-env = { version = "0.3.6", features = ["async_closure"] }
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]