drasi-bootstrap-postgres 0.2.3

PostgreSQL bootstrap plugin for Drasi
Documentation
// Copyright 2025 The Drasi Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#![allow(unexpected_cfgs)]

//! PostgreSQL bootstrap plugin for Drasi
//!
//! This plugin provides the PostgreSQL bootstrap provider implementation following
//! the instance-based plugin architecture.
//!
//! # Example
//!
//! ```no_run
//! use drasi_bootstrap_postgres::PostgresBootstrapProvider;
//!
//! // Using the builder
//! let provider = PostgresBootstrapProvider::builder()
//!     .with_host("localhost")
//!     .with_port(5432)
//!     .with_database("mydb")
//!     .with_user("user")
//!     .with_password("password")
//!     .with_tables(vec!["users".to_string()])
//!     .build();
//!
//! // Or using configuration
//! use drasi_bootstrap_postgres::{PostgresBootstrapConfig, SslMode};
//!
//! let config = PostgresBootstrapConfig {
//!     host: "localhost".to_string(),
//!     port: 5432,
//!     database: "mydb".to_string(),
//!     user: "user".to_string(),
//!     password: "password".to_string(),
//!     tables: vec!["users".to_string()],
//!     slot_name: "drasi_slot".to_string(),
//!     publication_name: "drasi_pub".to_string(),
//!     ssl_mode: SslMode::Disable,
//!     table_keys: vec![],
//! };
//! let provider = PostgresBootstrapProvider::new(config);
//! ```

pub mod config;
pub mod descriptor;
pub mod postgres;

pub use config::{PostgresBootstrapConfig, SslMode, TableKeyConfig};
pub use postgres::{PostgresBootstrapProvider, PostgresBootstrapProviderBuilder};

/// Dynamic plugin entry point.
///
/// Dynamic plugin entry point.
#[cfg(feature = "dynamic-plugin")]
drasi_plugin_sdk::export_plugin!(
    plugin_id = "postgres-bootstrap",
    core_version = env!("CARGO_PKG_VERSION"),
    lib_version = env!("CARGO_PKG_VERSION"),
    plugin_version = env!("CARGO_PKG_VERSION"),
    source_descriptors = [],
    reaction_descriptors = [],
    bootstrap_descriptors = [descriptor::PostgresBootstrapDescriptor],
);