stelae 0.6.6

A collection of tools in Rust and Python for preserving, authenticating, and accessing laws in perpetuity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;
/// Request for the versions endpoint.
#[derive(Deserialize, Debug)]
pub struct Version {
    /// Publication name.
    pub publication: Option<String>,
    /// Date to compare.
    pub date: Option<String>,
    /// Date to compare against.
    pub compare_date: Option<String>,
    /// Path to document/collection.
    pub path: Option<String>,
}