orbexa 0.0.1

Rust CLI for applying Codexa-generated Notion artifacts to managed Notion data sources and pages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core library for Orbexa.
//!
//! Orbexa applies Codexa-generated Notion artifacts to managed Notion
//! pages, databases, and data sources.

pub mod artifact;
pub mod config;
pub mod lock;
pub mod notion;
pub mod plan;
pub mod registry;
pub mod state;

/// Current Orbexa package version.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");