mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-15 20:40:50 +00:00
The `air-beautify` util takes an AIR script input with Lisp-like syntax and transforms it into experimental indentation-based syntax. Closing #184.
37 lines
997 B
TOML
37 lines
997 B
TOML
[workspace]
|
|
members = [
|
|
"air",
|
|
"air-interpreter",
|
|
"avm/server",
|
|
"crates/air-lib/air-parser",
|
|
"crates/air-lib/execution-info-collector",
|
|
"crates/air-lib/interpreter-data",
|
|
"crates/air-lib/interpreter-interface",
|
|
"crates/air-lib/lambda/ast",
|
|
"crates/air-lib/lambda/parser",
|
|
"crates/air-lib/log-targets",
|
|
"crates/air-lib/polyplets",
|
|
"crates/air-lib/test-utils",
|
|
"crates/air-lib/trace-handler",
|
|
"crates/beautifier",
|
|
"crates/data-store",
|
|
"tools/cli/air-beautify",
|
|
]
|
|
|
|
exclude = [
|
|
"air/tests/test_module/integration/security_tetraplets/auth_module",
|
|
"air/tests/test_module/integration/security_tetraplets/log_storage",
|
|
"crates/interpreter-wasm",
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
# since the interpreter in actively development stage, these settings are true at least for a while
|
|
debug = true
|
|
overflow-checks = true
|
|
debug-assertions = false
|
|
panic = "unwind"
|
|
|
|
[patch.crates-io]
|
|
polyplets = { path = "crates/air-lib/polyplets" }
|