surreal-id 0.2.0

A package for easily creating ID types for usage with surrealdb
Documentation
1
2
3
4
5
6
7
8
9
10
#![forbid(unsafe_code)]
#![warn(clippy::all)]
#![cfg_attr(coverage_nightly, feature(no_coverage))]

mod errors;
mod new_id;

pub use errors::IdError;

pub use new_id::NewId;