Rust library to generate static websites
5
fork

Configure Feed

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

chore: lockfile

+6 -108
+6 -6
Cargo.lock
··· 177 177 178 178 [[package]] 179 179 name = "env_filter" 180 - version = "0.1.2" 180 + version = "0.1.3" 181 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 - checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" 182 + checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" 183 183 dependencies = [ 184 184 "log", 185 185 "regex", ··· 187 187 188 188 [[package]] 189 189 name = "env_logger" 190 - version = "0.11.5" 190 + version = "0.11.6" 191 191 source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 192 + checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" 193 193 dependencies = [ 194 194 "anstream", 195 195 "anstyle", ··· 445 445 446 446 [[package]] 447 447 name = "syn" 448 - version = "2.0.90" 448 + version = "2.0.91" 449 449 source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" 450 + checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035" 451 451 dependencies = [ 452 452 "proc-macro2", 453 453 "quote",
-102
crates/framework/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 4 4 - 5 - [[package]] 6 - name = "dire-coronet" 7 - version = "0.1.0" 8 - dependencies = [ 9 - "maud", 10 - ] 11 - 12 - [[package]] 13 - name = "itoa" 14 - version = "1.0.14" 15 - source = "registry+https://github.com/rust-lang/crates.io-index" 16 - checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 17 - 18 - [[package]] 19 - name = "maud" 20 - version = "0.26.0" 21 - source = "registry+https://github.com/rust-lang/crates.io-index" 22 - checksum = "df518b75016b4289cdddffa1b01f2122f4a49802c93191f3133f6dc2472ebcaa" 23 - dependencies = [ 24 - "itoa", 25 - "maud_macros", 26 - ] 27 - 28 - [[package]] 29 - name = "maud_macros" 30 - version = "0.26.0" 31 - source = "registry+https://github.com/rust-lang/crates.io-index" 32 - checksum = "fa453238ec218da0af6b11fc5978d3b5c3a45ed97b722391a2a11f3306274e18" 33 - dependencies = [ 34 - "proc-macro-error", 35 - "proc-macro2", 36 - "quote", 37 - "syn", 38 - ] 39 - 40 - [[package]] 41 - name = "proc-macro-error" 42 - version = "1.0.4" 43 - source = "registry+https://github.com/rust-lang/crates.io-index" 44 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 45 - dependencies = [ 46 - "proc-macro-error-attr", 47 - "proc-macro2", 48 - "quote", 49 - "version_check", 50 - ] 51 - 52 - [[package]] 53 - name = "proc-macro-error-attr" 54 - version = "1.0.4" 55 - source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 57 - dependencies = [ 58 - "proc-macro2", 59 - "quote", 60 - "version_check", 61 - ] 62 - 63 - [[package]] 64 - name = "proc-macro2" 65 - version = "1.0.92" 66 - source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" 68 - dependencies = [ 69 - "unicode-ident", 70 - ] 71 - 72 - [[package]] 73 - name = "quote" 74 - version = "1.0.37" 75 - source = "registry+https://github.com/rust-lang/crates.io-index" 76 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 77 - dependencies = [ 78 - "proc-macro2", 79 - ] 80 - 81 - [[package]] 82 - name = "syn" 83 - version = "2.0.90" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" 86 - dependencies = [ 87 - "proc-macro2", 88 - "quote", 89 - "unicode-ident", 90 - ] 91 - 92 - [[package]] 93 - name = "unicode-ident" 94 - version = "1.0.14" 95 - source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 97 - 98 - [[package]] 99 - name = "version_check" 100 - version = "0.9.5" 101 - source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"