2022-05-20 17:07:22 +03:00
|
|
|
[package]
|
|
|
|
name = "air-beautifier"
|
2023-09-22 00:46:21 +03:00
|
|
|
version = "0.3.1"
|
2022-05-20 17:07:22 +03:00
|
|
|
description = "AIR human-readable format transformer library"
|
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
2023-03-15 16:59:30 +07:00
|
|
|
repository = "https://github.com/fluencelabs/aquavm"
|
|
|
|
documentation = "https://docs.rs/air-beautifier"
|
2022-05-20 17:07:22 +03:00
|
|
|
keywords = ["fluence", "air", "beautifier"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "air_beautifier"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-22 00:46:21 +03:00
|
|
|
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
|
2022-10-15 21:08:46 +03:00
|
|
|
itertools = "0.10.5"
|
2023-03-20 23:23:46 +07:00
|
|
|
thiserror = "1.0.40"
|