clash_starlark 0.6.2

Starlark policy evaluator for Clash — compiles .star files to JSON policy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Starlark code generation and (future) CST manipulation.
//!
//! Provides typed AST construction and pretty-printing for Starlark source,
//! backed by tree-sitter-starlark for future round-trip editing.

pub mod ast;
pub mod builder;
#[macro_use]
pub mod macros;
pub mod serialize;

pub use ast::{DictEntry, Expr, Stmt};
pub use serialize::{expr_to_string, serialize};