⬆️ Actualiza versiones de las dependencias

This commit is contained in:
Manuel Cillero 2022-10-13 18:18:08 +02:00
parent 6714473984
commit 3f2f53a8f4
10 changed files with 51 additions and 40 deletions

View file

@ -17,10 +17,10 @@ license = "Apache-2.0 or MIT"
path = "../pagetop"
[dependencies]
actix-web = "4.1.0"
actix-web = "4.2.1"
static-files = "0.2.3"
pagetop-mdbook = { path = "../pagetop-mdbook" }
maud = { git = "https://github.com/lambda-fairy/maud", rev = "e6787cd6" }
maud = "0.24.0"
[build-dependencies]
pagetop = { path = "../pagetop" }

View file

@ -2,14 +2,6 @@ use pagetop::util::bundle_resources;
use pagetop_mdbook::util::except_mdbook_common_resources;
fn main() -> std::io::Result<()> {
bundle_resources(
"./static/doc/en",
"guides_en",
Some(except_mdbook_common_resources),
)?;
bundle_resources(
"./static/doc/es",
"guias_es",
Some(except_mdbook_common_resources),
)
bundle_resources("./doc/en", "guides_en", Some(except_mdbook_common_resources))?;
bundle_resources("./doc/es", "guias_es", Some(except_mdbook_common_resources))
}