rops 0.1.7

SOPS-like library in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Display;

use crate::*;

impl FileFormatTestSuiteUtils for TomlFileFormat {
    fn simple_map(key: impl Display, value: impl Display) -> String {
        format!("{key} = {value}")
    }
}

generate_file_format_test_suite!(TomlFileFormat);