lisette-stdlib 0.2.5

Little language inspired by Rust that compiles to Go
Documentation
// Generated by Lisette bindgen
// Source: debug/buildinfo (Go stdlib)
// Go: 1.25.10
// Lisette: 0.2.1

import "go:io"
import "go:runtime/debug"

/// Read returns build information embedded in a Go binary file
/// accessed through the given ReaderAt. Most information is only available for
/// binaries built with module support.
pub fn Read(r: io.ReaderAt) -> Result<Ref<debug.BuildInfo>, error>

/// ReadFile returns build information embedded in a Go binary
/// file at the given path. Most information is only available for binaries built
/// with module support.
pub fn ReadFile(name: string) -> Result<Ref<debug.BuildInfo>, error>

/// Type alias for build info. We cannot move the types here, since
/// runtime/debug would need to import this package, which would make it
/// a much larger dependency.
pub type BuildInfo = debug.BuildInfo