From 43e7446399a7e158a521d365926f907caaecec80 Mon Sep 17 00:00:00 2001 From: Dinu Blanovschi Date: Tue, 5 Aug 2025 16:29:04 +0000 Subject: [PATCH] chore(doc): Update guide dx/dir-structure/guide [#24] --- .../content/docs/dx/dir-structure/guide.mdx | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/doc/docs/content/docs/dx/dir-structure/guide.mdx b/doc/docs/content/docs/dx/dir-structure/guide.mdx index 6295c22..c6e7b7a 100644 --- a/doc/docs/content/docs/dx/dir-structure/guide.mdx +++ b/doc/docs/content/docs/dx/dir-structure/guide.mdx @@ -1,20 +1,4 @@ ---- -title: Quick intro guide to dir-structure -full: true ---- - -This guide is intended to provide a comprehensive overview of the `dir-structure` crate, -which simplifies the representation and manipulation of directory structures in Rust. -It covers basic usage, advanced features, and practical examples to help you get started quickly. - -Each step shows an example directory structure that the code will expect to read or write. -This guide is mostly adapted from the [introductory blog post][blog post]. The blog post discusses it in -more detail, while this guide focuses on the practical aspects of using the crate. - -[blog post]: https://dnbln.dev/blog/dir-structure - - ## !!steps Basics @@ -141,7 +125,7 @@ dir.write(path)?; Yes, you can use serde types as well. You need to tell the library what format to use for serialization and deserialization. -This is an example using JSON, but TOML, YAML, and RON are also supported. +This is an example using JSON, but TOML, YAML, and RON are also supported, behind the respective features. -