[package]
name = "synth-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
description = "CLI for Synth, the WebAssembly-to-ARM Cortex-M AOT compiler"
[[bin]]
name = "synth"
path = "src/main.rs"
[features]
default = ["riscv"]
awsm = ["synth-backend-awsm"]
wasker = ["synth-backend-wasker"]
riscv = ["synth-backend-riscv"]
verify = ["synth-verify"]
[dependencies]
synth-core = { path = "../synth-core", version = "0.7.0" }
synth-frontend = { path = "../synth-frontend", version = "0.7.0" }
synth-synthesis = { path = "../synth-synthesis", version = "0.7.0" }
synth-backend = { path = "../synth-backend", version = "0.7.0" }
synth-backend-awsm = { path = "../synth-backend-awsm", version = "0.7.0", optional = true }
synth-backend-wasker = { path = "../synth-backend-wasker", version = "0.7.0", optional = true }
synth-backend-riscv = { path = "../synth-backend-riscv", version = "0.7.0", optional = true }
synth-verify = { path = "../synth-verify", version = "0.7.0", optional = true, features = ["z3-solver", "arm"] }
clap.workspace = true
anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
serde_json.workspace = true
wat.workspace = true
wast.workspace = true