use-astro 0.0.1

Astro framework metadata primitives for RustUse
Documentation
# use-astro

Astro framework metadata primitives for `RustUse`.

## Experimental

`use-astro` is experimental while `use-js` remains below `0.3.0`.

## Example

```rust
use use_astro::{AstroConfigFile, AstroIntegrationName, AstroRenderingMode};

let integration = AstroIntegrationName::new("@astrojs/mdx")?;

assert_eq!(integration.as_str(), "@astrojs/mdx");
assert_eq!(AstroRenderingMode::Hybrid.as_str(), "hybrid");
assert_eq!(AstroConfigFile::AstroConfigTs.as_str(), "astro.config.ts");
# Ok::<(), use_astro::AstroTextError>(())
```

## Scope

- Astro version-family, file-kind, directory-kind, rendering-mode, and config-file labels.
- Lightweight integration and content collection name validation.

## Non-goals

- Astro runtime behavior.
- MDX parsing.
- Content collections or routing semantics.
- Build or adapter behavior.

## License

Licensed under either Apache-2.0 or MIT.