1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This is free and unencumbered software released into the public domain.

use iri_string::types::IriString;

#[cfg(feature = "chrono")]
pub type Date = chrono::NaiveDate;

#[cfg(not(feature = "chrono"))]
pub type Date = String;

pub type Email = String;

pub type IRI = IriString;

pub type Name = String;