mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-04 23:20:18 +00:00
5c7e88e0f2
* Refactor `avm-server` interface mod to new crate (#294) The new crate name is `avm-interface`. It allows to build fully native air-trace, including pure WASM build. * Make fully native air-trace build Unless `wasm` feature is enabled (default), fully native build is produced. You may build WASM air-trace binary with `cargo build --target wasm32-wasi --no-default-features --release -p air-trace` * Fix tracing output on native air-trace build Wrong option was used.
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"air",
|
|
"air-interpreter",
|
|
"avm/interface",
|
|
"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/air-lib/utils",
|
|
"crates/beautifier",
|
|
"crates/data-store",
|
|
"tools/cli/air-beautify",
|
|
"tools/cli/air-trace",
|
|
]
|
|
|
|
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" }
|