mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 03:05:32 +00:00
1c0ff2c979
The `air-beautify` util takes an AIR script input with Lisp-like syntax and transforms it into experimental indentation-based syntax. Closing #184.
20 lines
481 B
TOML
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"
|