axe_backends/lib.rs
1//! Target platform backends for AXE.
2//!
3//! Each backend compiles from the AXE IR to a specific platform's
4//! native extension format, emitting diagnostics for lossy conversions.
5
6#![forbid(unsafe_code)]
7
8pub use axe_ir;
9
10/// Supported compilation targets.
11pub const TARGETS: &[&str] = &[
12 "claude", "cursor", "codex", "gemini", "copilot",
13 "cline", "windsurf", "continue", "zed", "aider",
14];