fastc-core · read-only flat-table TOML
fastc-core-toml
fastc-core-toml is a read-only, flat-table TOML parser sized for reading fastc.toml-shaped manifests. It is intentionally not a general TOML library — write support is not on the roadmap.
capability none — pure, does no I/O
What it ships (v0.1.0)
- Flat-table read parsing
- String, integer, boolean, and array values
- Manifest-shaped documents
When to use it
Reading declarative fastC manifests and simple config files.
Example
use toml::parse;
fn manifest(src: String) -> Table {
return parse(src);
} fastc-core-toml — minimal usage fastc-core-toml v0.1.0
Roadmap
Arrays of tables land in v0.2; write support is not planned.
Implements TOML v1.0 (read subset).
Provenance
Like every fastc-core package, fastc-core-toml ships with
content-hashed, cosign-keyless-signed releases and SLSA L3 provenance. It is
vendored, not pulled from a central registry — there is no account to compromise.
See also
- github.com/fastc-lang/fastc-core-toml — source, at
v0.1.0 - docs.fastc-lang.com/language/fastc-core/ — the per-package API deep-dive
- All eleven fastc-core packages →