This repository contains a simple example of JSON serialization and deserialization in Rust using the `serde` crate. The example defines an `Article` struct with nested `Paragraph` structs, serializes an instance of `Article` to a JSON string, and prints the result.
## Dependencies
To add these dependencies to your project, include the following in your `Cargo.toml` file:
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"