mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
25 lines
744 B
TOML
25 lines
744 B
TOML
[package]
|
|
name = "leptos_config"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Configuration for the Leptos web framework."
|
|
readme = "../README.md"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
config = { version = "0.14", default-features = false, features = ["toml", "convert-case"] }
|
|
regex = "1.7.0"
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
thiserror = "1.0.38"
|
|
typed-builder = "0.18"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["rt", "macros"] }
|
|
tempfile = "3"
|
|
temp-env = { version = "0.3.6", features = ["async_closure"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|