[package]
edition = "2021"
name = "flutmax-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI entry point for the flutmax transpiler"
readme = "README.md"
license = "MIT"
repository = "https://github.com/euskace/flutmax"
[lib]
name = "flutmax_cli"
path = "src/lib.rs"
[[bin]]
name = "flutmax"
path = "src/main.rs"
[[test]]
name = "compile_validate"
path = "tests/compile_validate.rs"
[[test]]
name = "graph_equivalence"
path = "tests/graph_equivalence.rs"
[[test]]
name = "max_reference_roundtrip"
path = "tests/max_reference_roundtrip.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "synth_examples"
path = "tests/synth_examples.rs"
[dependencies.flutmax-ast]
version = "0.1.0"
[dependencies.flutmax-codegen]
version = "0.1.0"
[dependencies.flutmax-decompile]
version = "0.1.0"
[dependencies.flutmax-objdb]
version = "0.1.0"
[dependencies.flutmax-parser]
version = "0.1.0"
[dependencies.flutmax-sema]
version = "0.1.0"
[dependencies.flutmax-validate]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_json]
version = "1"