29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
|
[package]
|
||
|
name = "libconfig-validator"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
description = "Validate LibrePages site configuration from web UI"
|
||
|
homepage = "https://git.batsense.net/librepages/libconfig"
|
||
|
repository = "https://git.batsense.net/librepages/libconfig"
|
||
|
documentation = "https://github.con/librepages/libconfig"
|
||
|
readme = "https://git.batsense.net/librepages/libconfig/blob/master/README.md"
|
||
|
license = "AGPLv3 or later version"
|
||
|
keywords = ["LibrePages", "libconfig", "validator"]
|
||
|
categories = ["jamstack"]
|
||
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
[dependencies]
|
||
|
yew = { version="0.20", features=["csr"] }
|
||
|
libconfig = { path = "../" }
|
||
|
serde_yaml = "0.9.15"
|
||
|
serde_json = "1.0.90"
|
||
|
web-sys = "0.3.60"
|
||
|
wasm-logger = "0.2.0"
|
||
|
tracing-web = "0.1.2"
|
||
|
tracing-subscriber = { version = "0.3.16", features = ["time"] }
|
||
|
wasm-bindgen = "0.2.83"
|
||
|
tracing = { version = "0.1.37", default-features = false}
|
||
|
time = { version = "0.3.17", features = ["wasm-bindgen"] }
|
||
|
toml = "0.5.10"
|