alef 0.25.37

Opinionated polyglot binding generator for Rust libraries
Documentation
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct GoConfig {
    pub module: Option<String>,
    /// Override the Go package name (default: derived from module path)
    pub package_name: Option<String>,
    /// Go module major version segment (`/vN`). Required for any v2+ Go module.
    /// Defaults to no segment when `None` and the Go module path has no version suffix;
    /// when set, emits `packages/go/v<N>/`.
    #[serde(default)]
    pub module_major: Option<u32>,
    #[serde(default)]
    pub features: Option<Vec<String>>,
    /// Types to exclude from Go binding generation.
    ///
    /// Go bindings call the generated C FFI directly through cgo, so types excluded from
    /// `[crates.ffi].exclude_types` are also excluded automatically by the Go backend.
    #[serde(default)]
    pub exclude_types: Vec<String>,
    /// Override the serde rename_all strategy for JSON field names (e.g. "camelCase", "snake_case").
    /// When set, this takes priority over the IR type-level serde_rename_all.
    #[serde(default)]
    pub serde_rename_all: Option<String>,
    /// Per-field name remapping for this language. Key is `TypeName.field_name`, value is the
    /// desired binding field name. Applied after automatic keyword escaping.
    #[serde(default)]
    pub rename_fields: HashMap<String, String>,
    /// Prefix wrapper for default tool invocations. When set, prepends this string to default
    /// commands across all pipelines (lint, test, build, etc.).
    #[serde(default)]
    pub run_wrapper: Option<String>,
    /// Extra paths to append to default lint commands (format, check, typecheck).
    #[serde(default)]
    pub extra_lint_paths: Vec<String>,
    /// Struct types that should emit the functional-options pattern (`With<Field>` helpers
    /// plus `New<Struct>(opts ...<Struct>Option)` constructor).
    /// By default, pure data DTOs emit plain struct literals; this allowlist enables the
    /// functional-options pattern only for behaviour-knob types (e.g., `DialOptions`).
    /// Defaults to empty (no functional-options emitted).
    #[serde(default)]
    pub functional_options: Vec<String>,
}