aquavm/crates/beautifier/Cargo.toml
Ivan Boldyrev b929614b4c
wasm-air-beautify WASM module (#325)
It provides a `beautify` method to output a "beautified"
(python-style formatted) AIR script.

The method returns a string or raises an exception.
2022-09-19 19:31:12 +07:00

20 lines
500 B
TOML

[package]
name = "air-beautifier"
version = "0.1.1"
description = "AIR human-readable format transformer library"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/beautifier"
publish = false
keywords = ["fluence", "air", "beautifier"]
[lib]
name = "air_beautifier"
path = "src/lib.rs"
[dependencies]
air-parser = { version = "0.7.1", path = "../air-lib/air-parser" }
itertools = "0.10.4"
thiserror = "1.0.35"