⬆️ Actualiza maud a la versión 0.25.0

This commit is contained in:
Manuel Cillero 2023-05-14 07:50:39 +02:00
parent 794d48b5ea
commit eea5d5b5f9
10 changed files with 12 additions and 12 deletions

View file

@ -17,4 +17,4 @@ license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
pagetop-megamenu = { path = "../pagetop-megamenu", version = "0.0" } pagetop-megamenu = { path = "../pagetop-megamenu", version = "0.0" }
maud = "0.24.0" maud = "0.25.0"

View file

@ -17,7 +17,7 @@ license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
static-files = "0.2.3" static-files = "0.2.3"
maud = "0.24.0" maud = "0.25.0"
[build-dependencies] [build-dependencies]
pagetop-build = { path = "../pagetop-build", version = "0.0" } pagetop-build = { path = "../pagetop-build", version = "0.0" }

View file

@ -17,7 +17,7 @@ license = "Apache-2.0 OR MIT"
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" } pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" }
static-files = "0.2.3" static-files = "0.2.3"
maud = "0.24.0" maud = "0.25.0"
[build-dependencies] [build-dependencies]
pagetop-build = { path = "../pagetop-build", version = "0.0" } pagetop-build = { path = "../pagetop-build", version = "0.0" }

View file

@ -17,7 +17,7 @@ license = "Apache-2.0 OR MIT"
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" } pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" }
static-files = "0.2.3" static-files = "0.2.3"
maud = "0.24.0" maud = "0.25.0"
[build-dependencies] [build-dependencies]
pagetop-build = { path = "../pagetop-build", version = "0.0" } pagetop-build = { path = "../pagetop-build", version = "0.0" }

View file

@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
static-files = "0.2.3" static-files = "0.2.3"
maud = "0.24.0" maud = "0.25.0"
[build-dependencies] [build-dependencies]
pagetop-build = { path = "../pagetop-build", version = "0.0" } pagetop-build = { path = "../pagetop-build", version = "0.0" }

View file

@ -17,7 +17,7 @@ license = "Apache-2.0 OR MIT"
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" } pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" }
static-files = "0.2.3" static-files = "0.2.3"
maud = "0.24.0" maud = "0.25.0"
[build-dependencies] [build-dependencies]
pagetop-build = { path = "../pagetop-build", version = "0.0" } pagetop-build = { path = "../pagetop-build", version = "0.0" }

View file

@ -16,4 +16,4 @@ license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
pagetop = { path = "../pagetop", version = "0.0" } pagetop = { path = "../pagetop", version = "0.0" }
maud = "0.24.0" maud = "0.25.0"

View file

@ -51,7 +51,7 @@ static-files = "0.2.3"
pagetop-macros = { path = "../pagetop-macros", version = "0.0" } pagetop-macros = { path = "../pagetop-macros", version = "0.0" }
maud = { version = "0.24.0", features = ["actix-web"] } maud = { version = "0.25.0", features = ["actix-web"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View file

@ -8,7 +8,7 @@ edition = "2021"
[dependencies.pagetop] [dependencies.pagetop]
path = "../pagetop" path = "../pagetop"
# Si requiere base de datos (MySql, Postgres y/o SQLite): # Si requiere base de datos (MySql, Postgres y/o SQLite) añadir:
features = ["mysql"] features = ["mysql"]
# features = ["postgres"] # features = ["postgres"]
# features = ["sqlite"] # features = ["sqlite"]
@ -18,7 +18,7 @@ default-features = false
[dependencies] [dependencies]
actix-web = "4.2.1" actix-web = "4.2.1"
# Para usar la macro html! (opcional): # Para usar la macro html! (opcional):
maud = "0.24.0" maud = "0.25.0"
# Para serializar estructuras de datos (opcional): # Para serializar estructuras de datos (opcional):
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View file

@ -8,14 +8,14 @@ edition = "2021"
[dependencies.pagetop] [dependencies.pagetop]
path = "../pagetop" path = "../pagetop"
# Si requiere base de datos: # Si requiere base de datos añadir:
features = ["database"] features = ["database"]
# En cuyo caso habrá que deshabilitar las características predeterminadas: # En cuyo caso habrá que deshabilitar las características predeterminadas:
default-features = false default-features = false
[dependencies] [dependencies]
# Para usar la macro html! (opcional): # Para usar la macro html! (opcional):
maud = "0.24.0" maud = "0.25.0"
# Para serializar estructuras de datos (opcional): # Para serializar estructuras de datos (opcional):
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }