The code and data behind xeiaso.net
5
fork

Configure Feed

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

build(deps): bump comrak from 0.13.0 to 0.13.1 (#501)

Bumps [comrak](https://github.com/kivikakk/comrak) from 0.13.0 to 0.13.1.
- [Release notes](https://github.com/kivikakk/comrak/releases)
- [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt)
- [Commits](https://github.com/kivikakk/comrak/compare/0.13.0...0.13.1)

---
updated-dependencies:
- dependency-name: comrak
dependency-type: direct:production
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

authored by

dependabot[bot]
dependabot[bot]
and committed by
GitHub
000ed823 817d4263

+31 -20
+30 -19
Cargo.lock
··· 273 273 ] 274 274 275 275 [[package]] 276 + name = "bit-set" 277 + version = "0.5.2" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de" 280 + dependencies = [ 281 + "bit-vec", 282 + ] 283 + 284 + [[package]] 285 + name = "bit-vec" 286 + version = "0.6.3" 287 + source = "registry+https://github.com/rust-lang/crates.io-index" 288 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 289 + 290 + [[package]] 276 291 name = "bitflags" 277 292 version = "1.3.2" 278 293 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 462 477 463 478 [[package]] 464 479 name = "comrak" 465 - version = "0.13.0" 480 + version = "0.13.1" 466 481 source = "registry+https://github.com/rust-lang/crates.io-index" 467 - checksum = "3a00ddef7b344800116b794a7cabfb2c60ef4f44db2f44b0f8f3f6dd2ea43866" 482 + checksum = "5abafb60b4451c838c6940b1a3e09bfd93f02c3feb4569aa9949c9119e2a748d" 468 483 dependencies = [ 469 484 "clap", 470 485 "entities", 471 486 "lazy_static", 487 + "memchr", 472 488 "pest", 473 489 "pest_derive", 474 490 "regex", 475 491 "shell-words", 476 492 "syntect", 477 - "twoway", 478 493 "typed-arena", 479 494 "unicode_categories", 480 495 "xdg", ··· 759 774 version = "0.1.2" 760 775 source = "registry+https://github.com/rust-lang/crates.io-index" 761 776 checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 777 + 778 + [[package]] 779 + name = "fancy-regex" 780 + version = "0.7.1" 781 + source = "registry+https://github.com/rust-lang/crates.io-index" 782 + checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf" 783 + dependencies = [ 784 + "bit-set", 785 + "regex", 786 + ] 762 787 763 788 [[package]] 764 789 name = "fastrand" ··· 2497 2522 dependencies = [ 2498 2523 "bincode", 2499 2524 "bitflags", 2525 + "fancy-regex", 2500 2526 "flate2", 2501 2527 "fnv", 2502 2528 "lazy_static", ··· 2508 2534 "serde_derive", 2509 2535 "serde_json", 2510 2536 "walkdir", 2537 + "yaml-rust", 2511 2538 ] 2512 2539 2513 2540 [[package]] ··· 2858 2885 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 2859 2886 2860 2887 [[package]] 2861 - name = "twoway" 2862 - version = "0.2.2" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" 2865 - dependencies = [ 2866 - "memchr", 2867 - "unchecked-index", 2868 - ] 2869 - 2870 - [[package]] 2871 2888 name = "typed-arena" 2872 2889 version = "1.7.0" 2873 2890 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2884 2901 version = "0.1.3" 2885 2902 source = "registry+https://github.com/rust-lang/crates.io-index" 2886 2903 checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 2887 - 2888 - [[package]] 2889 - name = "unchecked-index" 2890 - version = "0.2.2" 2891 - source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" 2893 2904 2894 2905 [[package]] 2895 2906 name = "unicase"
+1 -1
Cargo.toml
··· 14 14 axum-extra = "0.3" 15 15 color-eyre = "0.6" 16 16 chrono = "0.4" 17 - comrak = "0.13.0" 17 + comrak = "0.13.1" 18 18 derive_more = "0.99" 19 19 dirs = "4" 20 20 envy = "0.4"