#version #checker #semver

serde-semver

Serde-compatible version checker

3 unstable releases

0.2.1 Dec 8, 2021
0.2.0 Dec 8, 2021
0.1.0 Jun 14, 2021

#1633 in Encoding

Download history 17/week @ 2023-12-04 37/week @ 2023-12-11 199/week @ 2023-12-18 260/week @ 2024-01-08 117/week @ 2024-01-15 37/week @ 2024-01-29 71/week @ 2024-02-05 50/week @ 2024-02-12 135/week @ 2024-02-19 42/week @ 2024-02-26 51/week @ 2024-03-04 8/week @ 2024-03-11 34/week @ 2024-03-18

137 downloads per month
Used in flour

MIT license

7KB

serde-semver: Serde-compatible version checker

API doc

This crate provides a derive macro SemverReq to build a versioned marker type. For example, it assocates the type with version "3.1.4".

#[derive(SemverReq)]
#[version("3.1.4")]
struct MyVersion;

The marker type works as a version checker during deserialization. In this example, the marker verifies whether the deserialized JSON text is is compatible with version "3.1.4". For example, "3.1.3" and "3.1.0" are valid versions, but "3.2.0" and "2.7.0" are not.

use semver::Version;
use serde::{Deserialize, Serialize};
use std::path::PathBuf;
use serde_semver::SemverReq;

#[derive(SemverReq)]
#[version("3.1.4")]
struct MyVersion;

// An example configuration with version tag
#[derive(Serialize, Deserialize)]
struct Config {
    pub version: MyVersion,
    pub input_file: PathBuf,
    pub output_file: PathBuf,
}

// The version is audited during deserialization.
let config: Config = serde_json::from_str(
    r#"{
  "version": "3.1.4",
  "input_file": "input.txt",
  "output_file": "output.txt"
}"#,
)
.unwrap();

// The version is recovered after serialization.
assert_eq!(
    serde_json::to_string_pretty(&config).unwrap(),
    r#"{
  "version": "3.1.4",
  "input_file": "input.txt",
  "output_file": "output.txt"
}"#,
);

License

MIT license. See LICENSE.txt file.

Dependencies

~1.3–1.7MB
~40K SLoC