agy-bridge 0.11.0

Async Rust bridge and native runtime for the Google Antigravity SDK
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Policy bridge for the Antigravity SDK.
//!
//! Maps Rust policy rules to the SDK's Python `policy.allow()` / `policy.deny()`
//! / ``policy.workspace_only()`` calls.

pub mod path;
#[cfg(feature = "python")]
pub(crate) mod pyhook;
mod rules;

pub use path::*;
#[cfg(feature = "python")]
pub(crate) use pyhook::*;
pub use rules::*;