Atelier: crate atelier_smithy

Provides the ability to read and write Smithy models in its own native language representation.

crates.io docs.rs

The crate provides two low-level parsers, parse_model and parse_selector that correspond to the core Model and Selector types. These are decouple to allow for the tool use cases where it is unnecessary or even undesirable to parse all selector expressions as well as those cases where selector expressions may be useful in non-model scenarios.

This crate also provides implementations of both the core ModelReader and ModelWriter traits for Smithy IDL files.

Example

The following demonstrates the SmithyReader to parse a file into the in-memory model.

```rust use ateliercore::io::readmodelfromfile; use atelier_smithy::SmithyReader; use std::path::PathBuf;

let path = PathBufBuf::from("tests/good/waiters.smithy"); let mut reader = SmithyReader::default(); let result = readmodelfromfile(&mut reader, path); assert!(result.isok()); ```

Example - Selector

The following example parses the simple selector expression "*", denoting any shape, into it's in-memory model.

```rust use ateliersmithy::parseselector;

let result = parseselector("*"); assert!(result.isok()); ```

Changes

Version 0.2.11

Version 0.2.10

Version 0.2.9

Version 0.2.8

Version 0.2.7

Version 0.2.6

Version 0.2.5

Version 0.2.4

Version 0.2.3

Version 0.2.2

Version 0.2.1

Version 0.2.0

Version 0.1.5

Version 0.1.4

Version 0.1.3

Version 0.1.2

Version 0.1.1

Version 0.1.0

TODO

  1. Need to have a parser.