aquavm/crates/beautifier/Cargo.toml
Ivan Boldyrev 1c0ff2c979
air-beautifier lib and air-beautify binary (#266)
The `air-beautify` util takes an AIR script input with Lisp-like syntax
and transforms it into experimental indentation-based syntax.

Closing #184.
2022-05-20 21:07:22 +07:00

20 lines
481 B
TOML

[package]
name = "air-beautifier"
version = "0.1.0"
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 = { path = "../air-lib/air-parser" }
itertools = "0.10.3"
thiserror = "1.0.30"