From 87adc8cf9f63211edc943e72ec28de797de574ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sun, 30 Jun 2019 23:20:57 -0700 Subject: [PATCH] feat(exports): re-export ssri::Algorithm and serde_json::Value --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index b831bf6..a7f6b37 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,6 +4,9 @@ #![warn(missing_docs, missing_doc_code_examples)] +pub use ssri::Algorithm; +pub use serde_json::Value; + mod content; mod errors; mod index;