Skip to content
This repository was archived by the owner on Mar 11, 2024. It is now read-only.

Commit b761b0f

Browse files
committed
various updates
Signed-off-by: Michael Lodder <[email protected]>
1 parent 633b11a commit b761b0f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ursa_core/src/error.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use thiserror::Error as ThisError;
33

44
/// The common errors that can occur in Ursa
55
#[derive(ThisError, Debug)]
6+
#[non_exhaustive]
67
pub enum UrsaError {
78
/// Convert IO errors
89
#[error("io error")]

ursa_core/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//!
1+
//! This crate contains shared components used among the
2+
//! Ursa library
23
34
#![deny(
45
unused_variables,
@@ -22,4 +23,3 @@ pub use serde_json;
2223

2324
/// The errors generated by ursa components
2425
pub use error::*;
25-

0 commit comments

Comments
 (0)