axe-backends 0.1.0

Target platform backends for AXE (Agent eXtension Engine)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Target platform backends for AXE.
//!
//! Each backend compiles from the AXE IR to a specific platform's
//! native extension format, emitting diagnostics for lossy conversions.

#![forbid(unsafe_code)]

pub use axe_ir;

/// Supported compilation targets.
pub const TARGETS: &[&str] = &[
    "claude", "cursor", "codex", "gemini", "copilot",
    "cline", "windsurf", "continue", "zed", "aider",
];