~/website

adbb0061ed6cf97ccb7f94ca7a253f3c0b302787 — arthurmelton 4ea5743d 2 years ago
add walkdir
2 files changed, 21 insertions(+), 0 deletions(-)

M Cargo.lock
M Cargo.toml
M Cargo.lock => Cargo.lock +20 -0
@@ 362,6 362,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"

checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"

[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
 "winapi-util",
]

[[package]]
name = "scratch"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

@@ 486,6 495,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"

checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"

[[package]]
name = "walkdir"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
dependencies = [
 "same-file",
 "winapi-util",
]

[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"

@@ 552,6 571,7 @@ dependencies = [

 "chrono",
 "handlebars",
 "pulldown-cmark",
 "walkdir",
]

[[package]]

M Cargo.toml => Cargo.toml +1 -0
@@ 9,3 9,4 @@ edition = "2021"

chrono = "0.4.24"
handlebars = "4.3.6"
pulldown-cmark = "0.9.2"
walkdir = "2.3.3"