Compare commits

..

5 commits

Author SHA1 Message Date
55d55ffb25 fix(deps): update rust crate toml to v1
Some checks failed
Continuous Integration / Lint, Check & Test (push) Has been cancelled
Continuous Integration / Build Package (push) Has been cancelled
2026-03-31 00:08:52 +00:00
d548842fbb fix(deps): update rust crate toml to 0.9
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 2m18s
Continuous Integration / Build Package (push) Successful in 2m25s
2026-03-30 02:18:22 +02:00
3b2d8c7e63 fix(deps): update rust crate pulldown-cmark to 0.13
Some checks are pending
Continuous Integration / Lint, Check & Test (push) Waiting to run
Continuous Integration / Build Package (push) Waiting to run
2026-03-30 02:18:10 +02:00
a7579a7083 fix(deps): update rust crate itertools to 0.14
Some checks are pending
Continuous Integration / Lint, Check & Test (push) Waiting to run
Continuous Integration / Build Package (push) Waiting to run
2026-03-30 02:15:24 +02:00
f29840313d chore(deps): pin dependencies
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 2m48s
Continuous Integration / Build Package (push) Successful in 3m9s
2026-03-30 00:06:20 +00:00
2 changed files with 8 additions and 8 deletions

8
Cargo.lock generated
View file

@ -407,9 +407,9 @@ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
[[package]]
name = "itertools"
version = "0.13.0"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [
"either",
]
@ -581,9 +581,9 @@ dependencies = [
[[package]]
name = "pulldown-cmark"
version = "0.12.2"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14"
checksum = "7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad"
dependencies = [
"bitflags",
"getopts",

View file

@ -14,18 +14,18 @@ serde = { version = "1", features = ["derive"] }
toml = "1.0"
thiserror = "2"
miette = { version = "7", features = ["fancy"] }
pulldown-cmark = "0.12"
pulldown-cmark = "0.13"
regex = "1"
once_cell = "1"
chrono = { version = "0.4", features = ["serde"] }
walkdir = "2"
indexmap = { version = "2", features = ["serde"] }
itertools = "0.13"
itertools = "0.14"
directories = "5"
[dev-dependencies]
pretty_assertions = "1"
tempfile = "3"
pretty_assertions = "=1.4.1"
tempfile = "=3.27.0"
[[bin]]
name = "streamd"