[package]
edition = "2024"
name = "synth-backend"
version = "0.11.0"
authors = ["PulseEngine Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ARM encoder, ELF builder, vector table, linker scripts, and MPU configuration"
homepage = "https://github.com/pulseengine/synth"
readme = false
keywords = [
"webassembly",
"arm",
"cortex-m",
"compiler",
"embedded",
]
categories = [
"compilers",
"embedded",
"wasm",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/pulseengine/synth"
resolver = "2"
[features]
arm-cortex-m = ["synth-synthesis"]
default = ["arm-cortex-m"]
[lib]
name = "synth_backend"
path = "src/lib.rs"
[[example]]
name = "compile_add"
path = "examples/compile_add.rs"
[[test]]
name = "benchmark_suite"
path = "tests/benchmark_suite.rs"
[[test]]
name = "bit_manipulation_test"
path = "tests/bit_manipulation_test.rs"
[[test]]
name = "division_test"
path = "tests/division_test.rs"
[[test]]
name = "f32_operations_test"
path = "tests/f32_operations_test.rs"
[[test]]
name = "f32_vfp_encoding_test"
path = "tests/f32_vfp_encoding_test.rs"
[[test]]
name = "f64_operations_test"
path = "tests/f64_operations_test.rs"
[[test]]
name = "f64_vfp_encoding_test"
path = "tests/f64_vfp_encoding_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "issue_95_const_addr_load"
path = "tests/issue_95_const_addr_load.rs"
[[test]]
name = "kani_arm_encoding"
path = "tests/kani_arm_encoding.rs"
[[test]]
name = "led_blink_test"
path = "tests/led_blink_test.rs"
[[test]]
name = "linker_integration_test"
path = "tests/linker_integration_test.rs"
[[test]]
name = "meld_abi_test"
path = "tests/meld_abi_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.synth-core]
version = "0.11.0"
[dependencies.synth-synthesis]
version = "0.11.0"
optional = true
[dependencies.thiserror]
version = "1.0"