iced-markup 0.1.0-beta

A declarative markup DSL for building Iced GUI applications in Rust
Documentation
# Installation

To get started with `iced-markup`, you need to add it to your `Cargo.toml`.

## From crates.io

Add the dependency to your project:

```bash
cargo add iced-markup
```

Or manually:

```toml
[dependencies]
iced = "0.13"
iced-markup = "0.1.0"
```

## Running Examples

If you want to play with the code locally:

1. Clone the repository:
   ```bash
   git clone https://github.com/nayandas69/iced-markup
   cd iced-markup
   ```

2. Run the counter example:
   ```bash
   cargo run --example counter
   ```