propel_core/lib.rs
1//! Core types and configuration for propel.
2//!
3//! This crate defines the `propel.toml` schema ([`PropelConfig`]),
4//! project metadata ([`ProjectMeta`]), and shared error types.
5
6pub mod config;
7pub mod error;
8pub mod project;
9
10pub use config::{BuildConfig, CloudRunConfig, ProjectConfig, PropelConfig};
11pub use error::{Error, Result};
12pub use project::ProjectMeta;