Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add support for Maud 0.27.0

+20 -31
+13 -24
Cargo.lock
··· 2367 2367 2368 2368 [[package]] 2369 2369 name = "maud" 2370 - version = "0.26.0" 2370 + version = "0.27.0" 2371 2371 source = "registry+https://github.com/rust-lang/crates.io-index" 2372 - checksum = "df518b75016b4289cdddffa1b01f2122f4a49802c93191f3133f6dc2472ebcaa" 2372 + checksum = "8156733e27020ea5c684db5beac5d1d611e1272ab17901a49466294b84fc217e" 2373 2373 dependencies = [ 2374 2374 "itoa", 2375 2375 "maud_macros", ··· 2377 2377 2378 2378 [[package]] 2379 2379 name = "maud_macros" 2380 - version = "0.26.0" 2380 + version = "0.27.0" 2381 2381 source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "fa453238ec218da0af6b11fc5978d3b5c3a45ed97b722391a2a11f3306274e18" 2382 + checksum = "7261b00f3952f617899bc012e3dbd56e4f0110a038175929fa5d18e5a19913ca" 2383 2383 dependencies = [ 2384 - "proc-macro-error", 2385 2384 "proc-macro2", 2385 + "proc-macro2-diagnostics", 2386 2386 "quote", 2387 2387 "syn 2.0.106", 2388 2388 ] ··· 3714 3714 ] 3715 3715 3716 3716 [[package]] 3717 - name = "proc-macro-error" 3718 - version = "1.0.4" 3717 + name = "proc-macro2" 3718 + version = "1.0.101" 3719 3719 source = "registry+https://github.com/rust-lang/crates.io-index" 3720 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3720 + checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 3721 3721 dependencies = [ 3722 - "proc-macro-error-attr", 3723 - "proc-macro2", 3724 - "quote", 3725 - "version_check", 3722 + "unicode-ident", 3726 3723 ] 3727 3724 3728 3725 [[package]] 3729 - name = "proc-macro-error-attr" 3730 - version = "1.0.4" 3726 + name = "proc-macro2-diagnostics" 3727 + version = "0.10.1" 3731 3728 source = "registry+https://github.com/rust-lang/crates.io-index" 3732 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3729 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 3733 3730 dependencies = [ 3734 3731 "proc-macro2", 3735 3732 "quote", 3733 + "syn 2.0.106", 3736 3734 "version_check", 3737 - ] 3738 - 3739 - [[package]] 3740 - name = "proc-macro2" 3741 - version = "1.0.101" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 3744 - dependencies = [ 3745 - "unicode-ident", 3746 3735 ] 3747 3736 3748 3737 [[package]]
+1 -1
Cargo.toml
··· 5 5 [workspace.dependencies] 6 6 maudit = { path = "crates/maudit", version = "*" } 7 7 oubli = { path = "crates/oubli", version = "*" } 8 - maud = { version = "0.26.0" } 8 + maud = { version = "0.27.0" } 9 9 serde = { version = "1.0.216" } 10 10 11 11 [profile.profiling]
+1 -1
examples/basics/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0"
+1 -1
examples/blog/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0" 13 13 serde = { version = "1.0.216" }
+1 -1
examples/image-processing/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0"
+1 -1
examples/kitchen-sink/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0"
+1 -1
examples/library/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0" 13 13 serde = { version = "1.0.216" }
+1 -1
examples/markdown-components/Cargo.toml
··· 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true } 12 - maud = "0.26.0" 12 + maud = "0.27.0" 13 13 serde = { workspace = true }