serde-saphyr 1.0.1

YAML (de)serializer for Serde, emphasizing panic-free parsing, fast builds and good error reporting. Supports properties, comments, include
Documentation
#![cfg(feature = "deserialize")]

use serde::Deserialize;
use serde::de::{IgnoredAny, MapAccess, Visitor};
use std::fmt;

#[derive(Debug)]
struct ValueBeforeKey;

impl<'de> Deserialize<'de> for ValueBeforeKey {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        deserializer.deserialize_map(ValueBeforeKeyVisitor)
    }
}

struct ValueBeforeKeyVisitor;

impl<'de> Visitor<'de> for ValueBeforeKeyVisitor {
    type Value = ValueBeforeKey;

    fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str("a deliberately misordered map visitor")
    }

    fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
    where
        A: MapAccess<'de>,
    {
        let _ = map.next_value::<IgnoredAny>()?;
        Ok(ValueBeforeKey)
    }
}

#[test]
fn null_as_empty_map_reports_value_before_key_instead_of_panicking() {
    let err = serde_saphyr::from_str::<ValueBeforeKey>("~").unwrap_err();

    match inner_error(&err) {
        serde_saphyr::Error::ValueRequestedBeforeKey { location } => {
            assert_eq!(location.line(), 1);
            assert_eq!(location.column(), 1);
        }
        other => panic!("expected ValueRequestedBeforeKey, got {other:?}"),
    }
}

fn inner_error(err: &serde_saphyr::Error) -> &serde_saphyr::Error {
    match err {
        serde_saphyr::Error::WithSnippet { error, .. } => inner_error(error),
        err => err,
    }
}