Expand description
§serde-saphyr
serde-saphyr is a strongly typed YAML deserializer built on top of granit-parser.
The parser is fuzz-tested and designed not to panic on malformed YAML. This design does not cover out-of-memory conditions,
panics in user-provided callbacks, or similar cases. The library build is configured to deny unsafe code. This does
not extend to transitive dependencies.
The crate deserializes YAML directly into your Rust types without constructing an intermediate tree of “abstract values.” Try it online as a WebAssembly application here.
See release history on GitHub.
§Overview
§Why this approach?
- Light on resources: Having almost no intermediate data structures should result in more efficient parsing, especially if anchors are used only lightly.
- Also, simpler: No code to support intermediate Values of all kinds.
- Type-driven parsing: YAML that doesn’t match the expected Rust types is rejected early.
- Safer by construction:
serde-saphyravoids the typical YAML remote code execution vulnerability because it does not support or implement tag-driven object construction. When used for linting, it can be configured to reject unknown tags.
§Notable features
- Configurable budgets: Enforce input limits to mitigate resource exhaustion (e.g., deeply nested structures or very large arrays); see
Budget. - Precise error reporting with snippet rendering.
- Optional !include support with a custom or default resolver (inclusion of either a complete document or the node referenced by a specified anchor).
- Tag support: The
Tagged<T>wrapper captures and emits a node’s resolved YAML tag. - Comment support. Wrapper
Commented<T>both captures and emits comments. - Optional property support, with redaction (removal) of property values from crate-generated diagnostics.
- Serializer supports emitting anchors (Rc, Arc, Weak) if they are properly wrapped (see below).
- Declarative validation with optional
validator(example) orgarde(example). - Optional
miette(example) integration for more advanced error reporting. - serde_json::Value is supported when parsing without target structure defined (non-finite values are rejected for floats).
- Serializer and Deserializer are public (due to how it’s implemented, Deserializer is available in the closure only).
- Serialized floats are official YAML floats.
- Correct handling for JSON-style Unicode surrogate pairs.
- robotic extensions to support YAML dialect common in robotics (see below).
serde-saphyr is compatible with WebAssembly. The CI flow includes builds for both wasm32-unknown-unknown (browser / JS) and wasm32-wasip1 (WASI runtimes), with most of the test suite running and passing (excluding tests that require file access or similarly unsupported functionality). We also wrote yva in Dioxus to deploy serde-saphyr on the web.
§Testing
The test suite currently includes over 3000 passing tests. For YAML Test Suite v2022-01-17, all 350 active test IDs and all 402 active cases from the data-2022-01-17 release are represented. Although we made a reasonable effort, accidental omissions or conversion errors remain possible. Some additional cases are taken from the original serde-yaml tests.
§Project relationship
serde-saphyr is not a fork of the older serde-yaml crate and shares no code with it (apart from some reused tests). It is also not part of the saphyr project. The name was historically chosen to reflect the use of saphyr parser at a time when the Saphyr project did not provide its own Serde integration. granit-parser it’s currently using is the fork of Saphyr parser.
§Getting started
serde-saphyr requires Rust 1.89 or newer. This minimum supported Rust version (MSRV) is tested in CI.
§Usage
use serde::Deserialize;
#[derive(Debug, Deserialize)]
struct Config {
name: String,
enabled: bool,
retries: i32,
}
fn main() {
let yaml_input = r#"
name: "My Application"
enabled: true
retries: 5
...
"#;
let config: Result<Config, _> = serde_saphyr::from_str(yaml_input);
match config {
Ok(parsed_config) => {
println!("Parsed successfully: {:?}", parsed_config);
}
Err(e) => {
eprintln!("Failed to parse YAML: {}", e);
}
}
}§Using serializer or deserializer specifically
To speed up compilation, you can link only the deserializer or only the serializer (along with their respective dependencies). For easier initial integration, both serialize and deserialize features are enabled by default.
If you only need one side, you can disable default features and enable only the API surface you use:
serde-saphyr = { version = "1", default-features = false, features = ["deserialize"] }or
serde-saphyr = { version = "1", default-features = false, features = ["serialize"] }Disabling both will produce a “Invalid feature configuration” error (such configuration makes no sense).
The optional huge_documents feature switches span storage from u32 indices to a packed 48-bit internal representation so spans can cover YAML inputs far beyond 4 GiB without widening every coordinate to a full u64. Public getters still return u64, and values beyond the packed range saturate instead of wrapping.
§Migrating from 0.0.x
Version 1.0 removes the APIs that were deprecated during the 0.0.x series and makes a few intentional naming and extensibility changes:
- Replace the removed
to_writerandto_writer_with_optionsfunctions withto_fmt_writer*forstd::fmt::Writetargets orto_io_writer*forstd::io::Writetargets. - Construct configuration with
options!,budget!,ser_options!,alias_limits!, andrender_options!. Configuration and public request/result structs are non-exhaustive so fields can be added compatibly; use constructors such asResolvedInclude::newwhen returning include content. Fields themselves are no longer deprecated. ExternalMessageSource::Parsernow carries the parser’sScanError, and thesourcefield ofError::ExternalMessageis boxed. Prefer..when matching fields you do not need.- Create weak anchors from a borrowed strong pointer, for example
RcWeakAnchor::from(&rc); consuming a strong pointer no longer creates a weak anchor that immediately dangles. - The direct serializer’s
with_indentandwith_optionsconstructors validate settings and returnResult; options are passed by value.Serializer::newfollowsSerializerOptions::default, including compact list indentation.SerializerOptionsisClone, but intentionally notCopy. readnow returnsimpl Iterator, matching the other streaming entry points and avoiding an allocation. Code that explicitly required a boxed iterator can wrap it withBox::new.- Concrete formatter wrappers such as
DefaultMessageFormatterWithLocalizerandUserMessageFormatterWithLocalizerare no longer public, and serializer helper types such asTupleSerare now opaque implementation details. Use the returnedimpl MessageFormattervalues orserde::Serializerassociated types instead. When both serialization and deserialization are enabled, the new root aliasesSerializeErrorandDeserializeErrordistinguish their error types.
§Executable
serde-saphyr comes with a simple executable (CLI) that can be used to check the budget of a given YAML file, and can also be used as a YAML validator, printing the YAML error line, column numbers, and excerpt.
The CLI includes filesystem-backed !include support, so it must be built with the
include_fs feature. To install and run it (no Rust knowledge required):
cargo install serde-saphyr --features include_fs
# binary name is the package name by default
serde-saphyr path/to/file.yamlTo enable fancy error reporting (graphical diagnostics) via the optional miette integration, install/build the CLI with the miette feature enabled:
# install with miette enabled
cargo install serde-saphyr --features miette,include_fs
# or run from a git checkout
cargo run --features miette,include_fs -- path/to/file.yamlIf you want to keep the previous plain-text error output even when built with miette, pass --plain:
serde-saphyr --plain path/to/file.yamlIf you want to allow file inclusion (!include tags) during parsing, configure the filesystem root path using --include:
serde-saphyr --include path/to/root path/to/file.yaml§Configuration and safety controls
§Options
Serde-saphyr provides control over serialization and deserialization behavior. We generally welcome feature requests, but we also recognize that not every user wants every feature enabled by default.
To support different use cases, most behavior can be enabled, disabled, or tuned via Options (deserializers) and SerializerOptions (serializers). Serde-saphyr uses a macro-driven approach based on the options!, budget!, and ser_options! macros.
use serde_saphyr::DuplicateKeyPolicy;
fn main() {
let options = serde_saphyr::options! {
budget: serde_saphyr::budget! {
max_documents: 2,
},
duplicate_keys: DuplicateKeyPolicy::LastWins,
};
}Struct literals cannot be used because option structures are non-exhaustive (to allow new fields without an API-breaking change).
§Pathological inputs & budgets
Fuzzing shows that certain adversarial inputs can make YAML parsers consume excessive time or memory, enabling denial-of-service scenarios. To counter this, serde-saphyr offers a configurable Budget, available through Options. It accounts for parser events, retained copies used to replay anchors, and property-interpolation depth and work. Defaults are intentionally quite permissive; tighten them when you know your input shape, or disable the budget if you only parse YAML you generate yourself.
During reader-based deserialization, serde-saphyr does not buffer the entire payload; it parses incrementally, counting bytes and enforcing configured budgets.
Reader-based APIs enforce configured byte and structural limits while reading. When streaming from the reader through the iterator, other budget limits apply on a per-document basis, since such a reader may be expected to stream indefinitely. The total size of the input is not limited in this case.
To find the typical budget requirements for your file, use our web demo or run the main() executable of this library, providing a YAML file path as a program parameter. You can also fetch the budget programmatically by registering a closure with Options::with_budget_report.
§Indentation checking
Adding or removing a single space in YAML indentation may result in a document that is still syntactically correct but semantically wrong. To mitigate such issues, serde-saphyr can enforce indentation rules during deserialization via RequireIndent.
You can require the number of indentation columns to be consistent throughout the document, ensure it is even, or enforce that it is divisible by a specific number (for example, 4 or 6). Configure the desired policy using Options.
§Duplicate keys
Duplicate key handling is configurable. By default it’s an error; “first wins” and “last wins” strategies are available via Options. The duplicate key policy applies not just to strings but also to other types (if used as keys when deserializing into a map).
§Booleans
By default, if the target field is boolean, serde-saphyr will attempt to interpret standard YAML 1.1 values as boolean (not just false but also no, etc.).
If you do not want this (or if you are parsing into a JSON Value where it might be incorrectly inferred), enclose the value in quotes or set strict_booleans to true in Options.
§Deserialization patterns and YAML types
§Rust types as schema
To address the “Norway problem,” the target Rust types serve as an explicit schema. Because the parser knows whether a field expects a string or a boolean, it can correctly accept 1.2 either as a number or as the string "1.2", and interpret the common YAML boolean shorthands (y, on, n, off) as actual booleans when appropriate (can be disabled). Likewise, 0x2A is parsed as a hexadecimal integer when the target field is numeric, and as a string when the target is String. As with StrictYAML, serde-saphyr avoids inferring types from values — one of the most heavily criticized aspects of YAML. The Rust type system already provides all the necessary schema information.
Schema-based parsing can be disabled by setting no_schema to true in Options. In this case all unquoted values that are parsed into strings, but can be understood as something else, are rejected. This can be used for enforcing compatibility with another YAML parser that reads the same content and requires this quoting. Default setting is false.
Legacy octal notation such as 0052 can be enabled via Options, but it is disabled by default.
The concept that “Rust code is the schema” naturally extends to implemented support for validator and garde, as these crates allow annotations to be added directly to Rust types, providing even stricter control over permissible values.
§Multiple documents
YAML streams can contain several documents separated by ---/... markers. When deserializing with serde_saphyr::from_multiple, you still need to supply the vector element type up front (Vec<T>). That does not lock you into a single shape: make the element an enum and each document will deserialize into the matching variant. This lets you mix different payloads in one stream while retaining strong typing on the Rust side.
use serde::Deserialize;
#[derive(Debug, Deserialize, PartialEq)]
enum Document {
#[serde(rename = "person")]
Person { name: String, age: u8 },
#[serde(rename = "pet")]
Pet { kind: String },
}
fn main() {
let input = r#"---
person:
name: Alice
age: 30
---
pet:
kind: cat
---
person:
name: Bob
age: 25
"#;
let docs: Vec<Document> =
serde_saphyr::from_multiple(input).expect("valid YAML stream");
}§Nested enums
Externally tagged enums nest naturally in YAML as maps keyed by the variant name. This enables strict, expressive models (enums with associated data) instead of generic maps.
use serde::Deserialize;
#[derive(Deserialize)]
struct Move {
by: f32,
constraints: Vec<Constraint>,
}
#[derive(Deserialize)]
enum Constraint {
StayWithin { x: f32, y: f32, r: f32 },
MaxSpeed { v: f32 },
}
fn main() {
let yaml = r#"
- by: 10.0
constraints:
- StayWithin:
x: 0.0
y: 0.0
r: 5.0
- StayWithin:
x: 4.0
y: 0.0
r: 5.0
- MaxSpeed:
v: 3.5
"#;
let robot_moves: Vec<Move> = serde_saphyr::from_str(yaml).unwrap();
println!("Parsed {} moves", robot_moves.len());
}There are two variants of the deserialization functions: from_* and from_*_with_options. The latter accepts an Options object that allows you to configure budget and other aspects of parsing. For larger projects that require consistent parsing behavior, we recommend defining a wrapper function so that all option and budget settings are managed in one place (see examples/wrapper_function.rs).
§Tuple enum variants
It is possible to deserialize tuple enum variants:
use serde::Deserialize;
#[derive(Debug, PartialEq, Eq, Deserialize)]
pub enum Value {
Expression(String),
Pair(String, i32),
}
#[derive(Debug, PartialEq, Eq, Deserialize)]
pub struct Context {
value: Value,
}serde_saphyr::from_str::<Context>(yaml) would take the value: !Expression 1 + 1 or value: !Pair [a, 12]. Both YAML lists and Rust tuples allow their elements to have different types.
To verify support for polymorphism of arbitrary objects, not just enums, serde-saphyr is also tested with typetag.
§Composite keys
YAML supports complex (non-string) mapping keys. Rust maps can mirror this, allowing you to parse such structures directly.
use serde::{Deserialize};
use std::collections::HashMap;
#[derive(Debug, PartialEq, Eq, Hash, Deserialize)]
struct Point {
x: i32,
y: i32
}
#[derive(Debug, PartialEq, Deserialize)]
struct Transform {
// Transform between locations
map: HashMap<Point, Point>,
}
fn main() {
let yaml = r#"
map:
{x: 1, y: 2}: {x: 3, y: 4}
{x: 5, y: 6}: {x: 7, y: 8}
"#;
let transform: Transform = serde_saphyr::from_str(yaml).unwrap();
println!("{} entries", transform.map.len());
}§Binary scalars
!!binary-tagged YAML values are base64-decoded when deserializing into Vec<u8> or String (reporting an error if they are not valid UTF-8).
use serde::Deserialize;
#[derive(Debug, Deserialize, PartialEq)]
struct Blob {
data: Vec<u8>,
}
fn main() {
let blob: Blob = serde_saphyr::from_str("data: !!binary aGVsbG8=").unwrap();
assert_eq!(blob.data, b"hello");
}Important: some projects add the !!binary tag while actually expecting a verbatim string value (for example, the literal string "aGVsbG8="). This works with parsers that simply ignore the tag. However, serde-saphyr decodes !!binary values by default, attempting to interpret them as UTF-8 bytes.
If you use !!binary only as a documentation or annotation tag, enable ignore_binary_tag_for_string = true in Options.
use serde::Deserialize;
#[derive(Deserialize)]
struct ContainsString {
name: String,
}
fn main() -> Result<(), serde_saphyr::Error> {
let value: ContainsString = serde_saphyr::from_str_with_options(
"name: !!binary H4sIAA==",
serde_saphyr::options! {
ignore_binary_tag_for_string: true
},
)?;
assert_eq!(value.name, "H4sIAA==");
Ok(())
}!!binary for other types like Vec<u8> will stay supported.
§Deserializing into abstract JSON Value
If you must work with abstract types, you can also deserialize YAML into serde_json::Value. Serde will drive the process through deserialize_any because Value does not fix a Rust primitive type ahead of time. You lose the strict type control provided by Rust struct data types. Also, unlike YAML, JSON does not allow composite keys; keys must be strings. Mapping entries are presented to Serde in source order. Whether the target retains that order depends on its implementation.
§Borrowed string deserialization
serde-saphyr supports zero-copy deserialization for string fields when using from_str or from_slice. This allows deserializing into &str fields that borrow directly from the input, avoiding allocation overhead.
use serde::Deserialize;
#[derive(Debug, Deserialize)]
struct Data<'a> {
name: &'a str,
value: i32,
}
let yaml = "name: hello\nvalue: 42\n";
let data: Data = serde_saphyr::from_str(yaml).unwrap();
assert_eq!(data.name, "hello");§UTF-16
Reader-based entry points (from_reader, from_reader_with_options,
read, and read_with_options) accept BOM-marked UTF-8, UTF-16LE, and
UTF-16BE. If no recognized BOM is present, reader input is treated as UTF-8. String- and slice-based entry
points take UTF-8 only.
§YAML composition, comments, and external values
§Merge keys
serde-saphyr supports merge keys, which reduce redundancy and verbosity by specifying shared key-value pairs once and then reusing them across multiple mappings. Here is an example with merge keys (inherited properties):
use serde::Deserialize;
/// Configuration to parse into. Does not include "defaults"
#[derive(Debug, Deserialize, PartialEq)]
struct Config {
development: Connection,
production: Connection,
}
#[derive(Debug, Deserialize, PartialEq)]
struct Connection {
adapter: String,
host: String,
database: String,
}
fn main() {
let yaml_input = r#"
defaults: &defaults # Here we define "default configuration"
adapter: postgres
host: localhost
development:
<<: *defaults
database: dev_db
production:
<<: *defaults
database: prod_db
"#;
// Deserialize YAML with anchors, aliases and merge keys into the Config struct
let parsed: Config = serde_saphyr::from_str(yaml_input).expect("Failed to deserialize YAML");
// Define expected Config structure explicitly
let expected = Config {
development: Connection {
adapter: "postgres".into(),
host: "localhost".into(),
database: "dev_db".into(),
},
production: Connection {
adapter: "postgres".into(),
host: "localhost".into(),
database: "prod_db".into(),
},
};
// Assert parsed config matches expected
assert_eq!(parsed, expected);
}Merge keys are standard in YAML 1.1. Although YAML 1.2 no longer includes merge keys in its specification, it doesn’t explicitly disallow them either, and many parsers implement this feature.
Merge-key handling is configurable with the merge_keys option. The default
MergeKeyPolicy::Merge expands both implicitly resolved << entries and explicit
YAML 1.1 !!merge << entries. The verbatim !<tag:yaml.org,2002:merge> form and
equivalent %TAG handles are also recognized. Use MergeKeyPolicy::AsOrdinary
to accept these as regular mapping keys, or MergeKeyPolicy::Error to reject them.
The YAML 1.1 !!value tag is recognized but intentionally has no special default-value
behavior. Its scalar content is deserialized normally, and a tagged = mapping key remains
an ordinary "=" key. With reject_unsupported_tags: true, this tag is accepted only on that
exact scalar mapping key. The same strict-mode context check limits !!merge to a scalar <<
mapping key.
§Tags
serde-saphyr can capture tags. Applications can use custom tags to express units, priorities, accessibility and the like.
The Tagged<T>
wrapper stores a value and the resolved YAML tag attached to its node. The tag is represented as an
Option<String>. An empty string is not a valid tag value; use None instead.
Tag handles are resolved while parsing. For example, !!str becomes
tag:yaml.org,2002:str, while the local tag !nanoseconds remains !nanoseconds. Given:
%TAG !css! tag:app.styles,2026:
---
font: !css!important boldWhen the font value is deserialized as Tagged<String>, the captured tag is
Some("tag:app.styles,2026:important").
Serialization round-trips the resolved tag identity, but may normalize its source spelling.
When constructing Tagged<T> directly, a tag beginning with ! is local; every other tag identity
must have valid absolute URI syntax. Characters requiring URI escaping are percent-encoded on
output.
By default, unknown application-specific YAML tags remain available for tagged-enum handling and
are otherwise ignored where possible. Set reject_unsupported_tags: true in Options to reject any
explicit tag that serde-saphyr does not recognize. This strict mode also rejects custom tags used to
select enum variants. YAML 1.1 !!merge and !!value tags remain accepted only on their exact
scalar mapping keys, << and = respectively; using either tag on a value, a collection, or any
other scalar is rejected in strict mode. Known scalar, sequence, and mapping tags are likewise
accepted only on matching node kinds, even when reject_unsupported_tags is false. Robotics-only
!degrees and !radians tags are accepted in strict mode only when the robotics crate feature and
angle_conversions: true are both enabled.
Likewise, in strict mode, !include is accepted only when the include crate feature is enabled
and an include resolver is configured. Tag capture does not bypass normal YAML tag semantics or
the reject_unsupported_tags option.
Tagged enums written as !!EnumName VARIANT are also supported, but only for single-level scalar variants. Use mapping-based representations (EnumName: RED) if you need to embed enums within other enums.
§Comments
-
As granit-parser now supports comments, the wrapper Commented will also capture the relevant YAML comment into its field when deserializing YAML.
-
Comment capture is enabled by default. Set
emit_comments: falseinOptionsto recognize and validate YAML comments without retaining their text or emitting parser comment events. In this mode, deserializedCommented<T>values have an empty comment string. Comment bytes are still consumed and validated, so this is not an input-size or processing-time limit.Budget enforcement and reporting then treat comments as unretained data:
Budget::max_total_comment_bytesis not enforced;Budget::max_buffered_comment_eventshas no effect;- comments do not count toward
Budget::max_eventsorBudgetReport::events; and BudgetReport::total_comment_bytesremains0.
-
During serialization, Commented also emits a comment next to a scalar or reference (handy when the reference is far from its definition and needs explanation).
-
For container values, a comment attached to the parent value itself, such as
root: # comment, is captured only byCommented<Container>and is not inherited by the first child. A comment inside the container, directly above a child key or sequence item, is captured by that child. -
Comments are not copied from anchor definitions through aliases or merge keys. In
actual: { <<: *defaults }, aCommentedfield materialized from&defaultswill not receive a comment that was written at the definition site abovedefaults.port; that comment belongs to the original field. -
For aliases to containers used as nested values, leading comments above the alias follow the same rule as comments inside a direct nested container. In
root:\n # comment\n *defaults, the comment remains available to the expanded container’s first child rather than being captured as a comment on the alias use itself. -
See example commented.rs.
§Properties
Many configuration formats contain secret values that should not live in checked-in YAML or leak into error snippets.
The optional properties feature adds docker-compose-style ${NAME} interpolation for that use case, with values supplied through Options.
It is also useful for generated values or values that change between releases or deployments.
Interpolation is intentionally narrow:
- it only applies to plain scalars; quoted and block scalars stay literal,
- the supported forms are listed in the table below,
- the unbraced
$NAMEform is opt-in (see below) so a bare$NAMEstays a literal by default, $${NAME}escapes to a literal${NAME},- selected
default/replacement/errortext supports nested braced references, subject to the configured budget, - if no property map is configured, every
${...}form remains unchanged.
| Form | NAME unset | NAME set to empty | NAME set to non-empty |
|---|---|---|---|
${NAME} | error | "" | the value |
${NAME-default} | default | "" | the value |
${NAME:-default} | default | default | the value |
${NAME+replacement} | "" | replacement | replacement |
${NAME:+replacement} | "" | "" | replacement |
${NAME?error} | error (with error as hint) | "" | the value |
${NAME:?error} | error (with error as hint) | error (with error as hint) | the value |
default, replacement, and error are source text from the YAML and are not treated as secret.
Selected operator text can contain nested braced references, for example
${PRIMARY:-${FALLBACK:-default}}.
The error hint may be empty (${NAME?} / ${NAME:?}), matching docker-compose.
properties is gated behind the properties feature flag.
Once enabled, pass a property map through Options::with_properties(...):
use serde::Deserialize;
#[cfg(feature = "properties")]
#[derive(Debug, PartialEq, Eq, Deserialize)]
struct Config {
database_url: String,
mode: String,
}
#[cfg(feature = "properties")]
fn property_map() -> Result<Config, serde_saphyr::Error> {
use serde_saphyr::{options, from_str_with_options};
use std::collections::HashMap;
let mut properties = HashMap::new();
properties.insert(
"DATABASE_URL".to_string(),
"postgres://db.example/app".to_string(),
);
properties.insert("MODE".to_string(), "production".to_string());
let options = options! {
budget: serde_saphyr::budget! {
max_property_expansion_depth: 16,
max_total_property_interpolation_work: 1_048_576,
},
}
.with_properties(properties);
let yaml = r#"
database_url: ${DATABASE_URL}
mode: ${MODE}
"#;
let parsed: Config = from_str_with_options(yaml, options)?;
Ok(parsed)
}
#[cfg(feature = "properties")]
fn main() {
let parsed = property_map().unwrap();
assert_eq!(
parsed,
Config {
database_url: "postgres://db.example/app".to_string(),
mode: "production".to_string(),
}
);
}Property expansion limits are configured through Budget. Exceeding either limit returns
Error::Budget with a BudgetBreach::PropertyExpansionDepth or
BudgetBreach::PropertyInterpolationWork value. Setting Options::budget to None disables
these limits together with the rest of budget enforcement.
Set property_syntax: PropertySyntax::BracedOrBare to also accept the unbraced $NAME shorthand.
It uses the same Required semantics as ${NAME}, including "$$NAME" being a literal "$NAME".
Name boundaries are greedy.
$NAMEfoo looks up NAMEfoo, so write ${NAME}foo instead when you need to concatenate.
Unset names produce an error.
Modifiers stay brace-only:
use serde::Deserialize;
#[derive(Debug, Deserialize, PartialEq)]
struct Config {
db: String,
}
#[cfg(feature = "properties")]
fn main() -> Result<(), serde_saphyr::Error> {
use serde_saphyr::{PropertySyntax, options, from_str_with_options};
use std::collections::HashMap;
let mut properties = HashMap::from([
("DATABASE_URL".to_string(), "postgres://db.example/app".to_string()),
]);
let opts = options! { property_syntax: PropertySyntax::BracedOrBare }
.with_properties(properties);
let parsed: Config = from_str_with_options("db: $DATABASE_URL\n", opts)?;
let expected = Config { db: "postgres://db.example/app".to_string() };
assert_eq!(expected, parsed);
Ok(())
}A bare ${NAME} with no value in the map (and no -/:- default), a ${NAME?msg} / ${NAME:?msg} that triggers its error condition, or a malformed ${...} candidate (invalid name, unsupported modifier), fails deserialization with a dedicated error pointing at the YAML source location.
Configuration mistakes fail closed rather than silently producing partial values.
When the property values are secrets, interpolation resolves the final value before Serde finishes deserializing the surrounding type, so a downstream custom deserializer or validation path could otherwise echo the resolved secret.
serde-saphyr tracks interpolated values and redacts them back to their ${...} form in later error messages.
Treat the property map itself as sensitive - do not log or format it directly.
§Includes
The need for including YAML (not part of the official specs) can be seen from the popularity of the command-line yaml-include crate. That crate is very feature-complete. However, if the YAML parser and validator are separate from the pre-processor, they usually only report the line number and snippet in the processed document. For large documents with multiple and deep includes, this becomes challenging to interpret. YAML indentation and security requirements like path confinement or anchor isolation make “quick adding” of includes non-trivial.
serde-saphyr allows resolving !include tags via a custom resolver configured in Options. When using a single !include directly as a value, it works naturally for replacing a scalar, sequence, or an entire mapping:
# Replacing the entire mapping value
my_mapping: !include my_mapping.yaml
# Supplying a list/sequence value
my_list: !include my_list.yamlHowever, if you want to include a mapping and merge its keys into a parent mapping alongside other keys, you must use the merge key (<<). Attempting to list !include inside a mapping without a merge key is invalid YAML syntax:
# INVALID: `!include` is treated as a key missing a value (`:`)
a: 1
!include my_mapping.yaml
b: 2Instead, use the merge key to correctly inject the included mapping:
# VALID: merges the contents of my_mapping.yaml
a: 1
<<: !include my_mapping.yaml
b: 2!include is gated behind the include feature flag. If it is not enabled, or the resolver is not set, this tag has no special treatment; with reject_unsupported_tags: true, it is rejected as unsupported. The include feature allows resolvers that do not access the filesystem. For the most common case, where files are included from the filesystem, include_fs must be enabled as well. Then the most common way to enable includes looks like this:
use serde::Deserialize;
use serde_saphyr::{from_str_with_options, options};
#[derive(Debug, Deserialize)]
struct Config {
selected_users: Vec<User>,
}
#[derive(Debug, Deserialize)]
struct User {
name: String,
}
fn main() {
let yaml = "selected_users: !include#users value.yaml\n";
let options = options! {}
.with_filesystem_root("examples")
.expect("failed to create filesystem include resolver");
let config: Config = from_str_with_options(yaml, options)
.expect("failed to parse filesystem include example");
assert_eq!(config.selected_users[0].name, "Alice");
}You can alternatively use SafeFileResolver to configure more options, or provide your own IncludeResolver callback that resolves a name into YAML text, which can be useful for custom storage backends or generated YAML without using the filesystem.
Instead of including the whole document, you can also include only the value of a specific anchor defined in the included YAML document:
!include my_mapping.yaml#anchor_nameSafeFileResolver has a built-in capability for anchor extraction. For flexibility, custom IncludeResolver implementations must do this on their own, splitting anchor from the reference and then returning InputSource::AnchoredText.
Unless otherwise stated, the anchor scope is restricted to the document where it is defined. Overriding a parent anchor value somewhere deep inside included content would be challenging to debug and could even become a security issue.
Whole-document includes only support sources that contain a single YAML document. Fragment includes also require the included source to contain a single YAML document; multi-document sources are rejected instead of scanning across document boundaries. Recursive inclusion is not permitted (and the file, not the fragment, is the include’s identity).
§Validation and diagnostics
§Snippets
To make debugging easier, serde-saphyr renders snippets of the YAML that caused an error (similar to how many compilers report errors). These snippets include the line where the error occurred along with some surrounding context. Any terminal control sequences that might be present in the YAML are stripped out. If not desired, snippets can be removed for a specific error using without_snippet, or disabled entirely via the Options configuration.
§Garde and Validator integration
This crate optionally integrates with validator or garde to run declarative validation. serde-saphyr error will print the snippet, providing location information. If the invalid value comes from the YAML anchor, serde-saphyr will also tell where this anchor has been defined.
§Garde
use garde::Validate;
use serde::Deserialize;
#[derive(Debug, Deserialize, Validate)]
#[serde(rename_all = "camelCase")] // Rust in snake_case, YAML in camelCase.
struct AB {
// Just defined here (we validate `second_string` only).
#[garde(skip)]
first_string: String,
#[garde(length(min = 2))]
second_string: String,
}
fn main() {
let yaml = r#"
firstString: &A "x"
secondString: *A
"#;
let err = serde_saphyr::from_str_valid::<AB>(yaml)
.expect_err("must fail validation");
// Field in error message in camelCase (as in YAML).
eprintln!("{err}");
}§Validator
use serde::Deserialize;
use validator::Validate;
#[derive(Debug, Deserialize, Validate)]
#[serde(rename_all = "camelCase")] // Rust in snake_case, YAML in camelCase.
struct AB {
// Just defined here (we validate `second_string` only).
#[allow(dead_code)]
first_string: String,
#[validate(length(min = 2))]
second_string: String,
}
fn main() {
let yaml = r#"
firstString: &A "x"
secondString: *A
"#;
let err = serde_saphyr::from_str_validate::<AB>(yaml)
.expect_err("must fail validation");
eprintln!("{err}");
}A typical output with serde-saphyr native snippet rendering looks like:
error: line 3 column 23: invalid here, validation error: length is lower than 2 for `secondString`
--> the value is used here:3:23
|
1 |
2 | firstString: &A "x"
3 | secondString: *A
| ^ invalid here, validation error: length is lower than 2 for `secondString`
4 |
|
| This value comes indirectly from the anchor at line 2 column 25:
|
1 |
2 | firstString: &A "x"
| ^ defined here
3 | secondString: *A
4 | The integration of garde is feature-gated and disabled by default. Use serde-saphyr = { version = "1", features = ["garde"] } (or features = ["validator"]) in Cargo.toml to enable it.
If you prefer to validate without validation crates and want to ensure that location information is always available, use the heavier approach with Spanned<T> wrapper instead.
§Custom messages
The default error messages are developer-oriented. They may mention serde-saphyr APIs and
options and include “action items” intended to help fix the problem.
If error messages are shown to end users, switch to the built-in user-facing formatter or provide your own formatter (for example, to translate messages into another language).
See:
MessageFormatter— controls the main message text for eachError.Localizer— controls message pieces that are composed outsideMessageFormatter::format_message(location suffixes, validation/snippet labels, etc.).
§Use the built-in user-facing formatter
use serde_saphyr::UserMessageFormatter;
println!("\n[User Error]:\n{}", err.render_with_formatter(&UserMessageFormatter));§Use a custom formatter with miette
If you want fancy diagnostics via miette, you can convert a serde-saphyr error to a
miette::Report while still controlling the message text via a custom formatter:
use serde_saphyr::{MessageFormatter, UserMessageFormatter};
fn main() {
let yaml = "not_a_bool\n";
let opts = serde_saphyr::options! { with_snippet: false };
let err = serde_saphyr::from_str_with_options::<bool>(yaml, opts)
.expect_err("bool parse error expected");
// You can plug in `&UserMessageFormatter` or your own `&dyn MessageFormatter`.
let formatter: &dyn MessageFormatter = &UserMessageFormatter;
let report = serde_saphyr::miette::to_miette_report_with_formatter(
&err,
yaml,
"config.yaml",
formatter,
);
eprintln!("{report:?}");
}This requires enabling the crate’s miette feature.
For a complete custom formatter/localizer example, see examples/pirate_formatter.rs. For an
end-to-end miette example, see examples/miette.rs.
§Figment
Both figment and figment2 are supported as optional features (see examples/figment_yaml).
§Serialization and round-tripping
§Serialization
use serde::Serialize;
#[derive(Serialize)]
struct User { name: String, active: bool }
let yaml = serde_saphyr::to_string(&User { name: "Ada".into(), active: true }).unwrap();
assert!(yaml.contains("name: Ada"));§Anchors (Rc/Arc/Weak)
Serde-saphyr can conceptually connect YAML anchors with Rust shared references (Rc, Weak and Arc). You need to use wrappers to activate this feature:
RcAnchor<T>andArcAnchor<T>emit anchors like&a1on first occurrence and may emit aliases*a1later.RcWeakAnchor<T>andArcWeakAnchor<T>serialize a weak ref: if the strong pointer is gone, it becomesnull.
use serde::{Deserialize, Serialize};
use serde_saphyr::RcAnchor;
use std::rc::Rc;
#[derive(Debug, Deserialize, Serialize)]
struct Node {
name: String,
}
#[derive(Debug, Deserialize, Serialize)]
struct Document {
primary: RcAnchor<Node>,
alias: RcAnchor<Node>,
}
fn main() {
let shared = Rc::new(Node {
name: "shared node".to_string(),
});
let document = Document {
primary: RcAnchor::from(shared.clone()),
alias: RcAnchor::from(shared),
};
let yaml = serde_saphyr::to_string(&document).expect("serialize anchors");
assert!(yaml.contains("&a1"));
assert!(yaml.contains("*a1"));
let deserialized: Document =
serde_saphyr::from_str(&yaml).expect("deserialize anchors");
assert!(Rc::ptr_eq(
&deserialized.primary.0,
&deserialized.alias.0,
));
}When anchors are highly repetitive and also large, packing them into references can make YAML more human-readable.
To support round-tripping, the library can also deserialize into these anchor structures; this deserialization is identity-preserving. A field or structure that is defined once and subsequently referenced will exist as a single instance in memory, with all anchor fields pointing to it. This is crucial when the topology of references itself constitutes important information to be transferred.
§Recursive YAML
While recursive YAML is unusual, it is not forbidden by the specification. Real-world examples and requests to implement it exist.
Serde-saphyr supports recursive structures, but Rust requires being very explicit about this. A structure that may hold recursive references to itself must be wrapped in a RcRecursive<T>, and any reference that points to it must be RcRecursion<T>. Arc varieties exist. See also examples/recursive_yaml.rs.
§Controlling serialization
- Empty maps are serialized as {} and empty lists as [] by default.
- Strings containing newlines, and very long strings are serialized as appropriate block scalars, except in cases where they would need escaping (like ending with
:). - Indentation is configurable.
- The wrapper SpaceAfter adds an empty line after the wrapped value, useful for visually separating sections in the output YAML.
- It is possible to request that all strings be quoted — using single quotes when no escape sequences are present, and double quotes otherwise. This is very explicit and unambiguous, but such YAML may be less readable for humans. Line wrapping is disabled in this mode.
- YAML 1.1 booleans (
y,yes,on, etc.) are normally quoted as both keys and values. If this is undesired (y is a coordinate), setyaml_12to true.
These settings can be changed in SerializerOptions.
§Feature-gated domain extensions
§Robotics
The feature-gated “robotics” capability enables parsing of YAML extensions commonly used in robotics (ROS). These extensions support conversion functions (deg, rad) and simple mathematical expressions such as deg(180), rad(pi), 1 + 2*(3 - 4/5), or rad(pi/2). This capability is gated behind the robotics feature and is not enabled by default. Additionally, angle_conversions must be set to true in the Options. Just adding the robotics feature is not enough to activate this mode of parsing. This parser is still just a simple expression calculator implemented directly in Rust, not some hook into a language interpreter.
rad_tag: !radians 0.15 # value in radians, stays in radians
deg_tag: !degrees 180 # value in degrees, converts to radians
expr_complex: 1 + 2*(3 - 4/5) # simple expressions supported
func_deg: deg(180) # value in degrees, converts to radians
func_rad: rad(pi) # value in radians (stays in radians)
hh_mm_secs: -0:30:30.5 # Time
longitude: !radians 8:32:53.2 # Nautical, ETH Zürich Main Building (8°32′53.2″ E)use serde::Deserialize;
#[derive(Debug, Deserialize)]
struct RoboFloats {
func_deg: f64,
func_rad: f64,
}
fn main() {
let yaml = "func_deg: deg(180)\nfunc_rad: rad(pi)\n";
let options = serde_saphyr::options! {
angle_conversions: true,
};
let v: RoboFloats = serde_saphyr::from_str_with_options(yaml, options)
.expect("parse robotics YAML");
assert!((v.func_deg - std::f64::consts::PI).abs() < 1e-12);
assert!((v.func_rad - std::f64::consts::PI).abs() < 1e-12);
}Safety hardening measures with this feature enabled include limits on maximal expression depth, maximal number of digits, strict underscore placement, and fraction parsing limits to the precision-relevant digit.
§Limitations
§Unsupported features
- Common Serde renames made to follow naming conventions (case changes, snake_case, kebab-case, r# stripping) are supported in snippets, as long as they do not introduce ambiguity. Arbitrary renames, flattening, aliases and other complex manipulations possible with serde are not. Parsing and validation will still work, but error messages for arbitrarily renamed fields will only show the Rust path.
Spanned<T>cannot be used within variants of untagged or internally tagged enums due to a fundamental limitation in Serde. Instead, wrap the entire enum inSpanned<T>, or use externally tagged enums (the default).- Anchors are not fully compatible with
#[serde(flatten)]directive (this is Serde limitation we can’t work around). Deserialization succeeds, but full strong-pointer identity may be lost for nested anchors inside flattened payloads. - Borrowing works for any scalar whose parsed value exists verbatim in the input. This includes plain scalars and simple quoted strings without escape sequences (e.g.,
"hello world"can be borrowed, but"hello\nworld"cannot because\nis transformed to a newline). For maximum flexibility, useCow<'a, str>which borrows when possible and owns when transformation is required. - Reader-based entry points (
from_reader) requireDeserializeOwnedand cannot return borrowed values. serde-saphyrdoes not capture freestanding comments, not obviously attached to any node (separated by multiple empty lines, or at the end of the document). Usegranit-parserdirectly to capture such comments (serde-saphyr re-exports it).
Re-exports§
pub use self::ser::Error as SerializeError;pub use self::ser::error as ser_error;pub use self::ser::options::CommentPosition;pub use self::ser::options::SerializerOptions;pub use ser::YamlSerializer as Serializer;pub use granit_parser;
Modules§
- budget
- Streaming YAML budget checker using granit-parser.
- localizer
- Localization / wording customization.
- options
- ser
- Single-pass YAML serializer with optional anchors for Rc/Arc/Weak, order preservation (uses the iterator order of your types), simple style controls (block strings & flow containers), and special float handling for NaN/±Inf. No intermediate YAML DOM is built.
Macros§
- alias_
limits - Construct
crate::options::AliasLimitsfromDefaultand a list of field assignments. - budget
- Construct
Some([``crate::Budget``])fromDefaultand a list of field assignments. - options
- Construct
crate::OptionsfromDefaultand a list of field assignments. - render_
options - Construct
crate::RenderOptionsfrom defaults and a list of field assignments. - ser_
options - Construct
crate::SerializerOptionsfromDefaultand a list of field assignments.
Structs§
- ArcAnchor
- A wrapper around
Arc<T>that opts a field into anchor emission (e.g. serialization by reference). - ArcRecursion
- Thread-safe recursive reference to a parent
ArcRecursiveanchor. It is more complex to use thanRcRecursivebecause you must lock it before accessing the value. SeeArcRecursivefor code example. - ArcRecursive
- The parent (origin) anchor definition that may have recursive references to it.
This type provides the value for the references and must be placed where the original value is defined.
Fields that reference this value (possibly recursively) must be wrapped in
ArcRecursion. - ArcWeak
Anchor - A wrapper around
std::sync::Weak<T>that opts into anchor emission. - Budget
- Resource budgets for YAML parsing and deserialization.
- Commented
- Attach an inline YAML comment to a value when serializing.
- Cropped
Region - Cropped YAML source window stored inside
Error::WithSnippet. - Default
English Localizer - Default English localizer used by the crate.
- Default
Message Formatter - Default developer-oriented message formatter.
- Deserializer
- The streaming Serde deserializer.
- Double
Quoted - Force a string value to be emitted in double-quoted style.
- External
Message - A best-effort description of an external message.
- FlowMap
- Force a mapping to be emitted in flow style:
{k1: v1, k2: v2}. - FlowSeq
- Force a sequence to be emitted in flow style:
[a, b, c]. - FoldStr
- Force a YAML folded block string using the
>style. - Fold
String - Owned-string variant of
FoldStrthat forces a YAML folded block string using the>style. - Include
Request - A request passed to the include resolver to resolve an include directive.
- LitStr
- Force a YAML block literal string using the
|style. - LitString
- Owned-string variant of
LitStrthat forces a YAML block literal string using the|style. - Location
- Row/column location within the source YAML document (1-indexed, character-based).
- Locations
- Pair of locations for values that may come indirectly from YAML anchors.
- Nullable
Tilde - Serialize
Noneas YAML tilde (~) while otherwise behaving likeOption<T>. - Options
- Parser configuration options.
- RcAnchor
- A wrapper around
Rc<T>that opts a field into anchor emission (e.g. serialization by reference). - RcRecursion
- The possibly recursive reference to the parent anchor that must be
RcRecursive. SeeRcRecursivefor code example. - RcRecursive
- The parent (origin) anchor definition that may have recursive references to it.
This type provides the value for the references and must be placed where the original value is defined.
Fields that reference this value (possibly recursively) must be wrapped in
RcRecursion. - RcWeak
Anchor - A wrapper around
std::rc::Weak<T>that opts into anchor emission. - Render
Options - Options for deferred error rendering.
- Resolved
Include - A resolved include containing the source identity and the content.
- Single
Quoted - Force a string value to be emitted in a single-quoted style. This provides additional safety constraints, as serializer rejects control characters and other values that require double-quoted string escaping.
- Space
After - Add an empty line after the wrapped value when serializing.
- Span
- A span within the source YAML document.
- Spanned
- A value paired with source locations describing where it came from. Spanned locations are specified in character positions and, when possible, in byte offsets as well. Byte offsets are available for string sources but not reader sources.
- Tagged
- Capture and emit the resolved YAML tag attached to a value.
- User
Message Formatter - User-facing message formatter.
Enums§
- Deserialize
Error - Error type compatible with
serde::de::Error. - Duplicate
KeyPolicy - Duplicate key handling policy for mappings.
- Error
- Error type compatible with
serde::de::Error. - External
Message Source - Where an “external” message comes from.
- Include
Resolve Error - Error type returned by user-provided include resolvers.
- Input
Source - Owned input that can be fed into the YAML parser.
- Merge
KeyPolicy - Merge key handling policy for YAML mappings.
- Require
Indent - Requirements for indentation validation during YAML deserialization.
- Resolve
Problem - Specific problems encountered during file include resolution.
- Snippet
Mode - Controls whether snippet output is included when available.
- Transform
Reason - The reason why a string value was transformed during parsing and cannot be borrowed.
Statics§
- DEFAULT_
ENGLISH_ LOCALIZER - A single shared instance of the default English localizer.
Traits§
- Localizer
- All crate-authored wording customization points.
- Message
Formatter - Formats error messages (not including locations/snippets).
Functions§
- from_
multiple - Deserialize multiple YAML documents from a single string into a vector of
T. Completely empty documents are ignored and not included in the returned vector. - from_
multiple_ with_ options - Deserialize multiple YAML documents into a vector with configurable
Options. - from_
reader - Deserialize a single YAML document from any
std::io::Read. - from_
reader_ with_ options - Deserialize a single YAML document from any
std::io::Readwith configurableOptions. - from_
slice - Deserialize a single YAML document from a UTF-8 byte slice.
- from_
slice_ multiple - Deserialize multiple YAML documents from a UTF-8 byte slice into a vector of
T. - from_
slice_ multiple_ with_ options - Deserialize multiple YAML documents from bytes with configurable
Options. Completely empty documents are ignored and not included in the returned vector. - from_
slice_ with_ options - Deserialize a single YAML document from a UTF-8 byte slice with configurable
Options. - from_
str - Deserialize any
T: serde::de::Deserialize<'de>directly from a YAML string. - from_
str_ with_ options - Deserialize a single YAML document with configurable
Options. - read
- Create an iterator over YAML documents from any
std::io::Readusing default options. - read_
with_ options - Create an iterator over YAML documents from any
std::io::Read, with configurable options. - to_
fmt_ writer - Serialize a value as YAML into any
std::fmt::Writetarget. - to_
fmt_ writer_ with_ options - Serialize a value as YAML into any
std::fmt::Writetarget, with options. Options are consumed to leave room for non-Copysettings. - to_
io_ writer - Serialize a value as YAML into any
std::io::Writetarget. - to_
io_ writer_ with_ options - Serialize a value as YAML into any
std::io::Writetarget, with options. Options are consumed to leave room for non-Copysettings. - to_
string - Serialize a value to a YAML
String. - to_
string_ multiple - Serialize multiple documents into a YAML string.
- to_
string_ multiple_ with_ options - Serialize multiple documents into a YAML string with configurable
Options. - to_
string_ with_ options - Serialize a value to a YAML
String, withSerializerOptions. - with_
deserializer_ from_ reader - Create a streaming
crate::Deserializerfor anystd::io::Readand run a closure against it. - with_
deserializer_ from_ reader_ with_ options - Create a streaming
crate::Deserializerfor anystd::io::Readwith configurableOptionsand run a closure against it. - with_
deserializer_ from_ slice - Create a streaming
crate::Deserializerfor a UTF-8 byte slice and run a closure against it. - with_
deserializer_ from_ slice_ with_ options - Create a streaming
crate::Deserializerfor a UTF-8 byte slice with configurableOptionsand run a closure against it. - with_
deserializer_ from_ str - Convenience wrapper around
with_deserializer_from_str_with_optionsusingOptions::default. - with_
deserializer_ from_ str_ with_ options - Create a streaming
crate::Deserializerfor a YAML string and run a closure against it.
Type Aliases§
- Developer
Message Formatter - Alias for the default developer-oriented formatter.
- Include
Resolver - Callback used to resolve
!includedirectives during parsing.