rinkle 0.1.0

A symlink farm manager which takes distinct sets of software and/or data located in separate directories on the filesystem, and makes them appear to be installed in a single directory tree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Error types for the crate

use anyhow;
use thiserror::Error;

/// The error type for this crate
#[derive(Error, Debug)]
pub enum Error {
	/// A generic error which should not appear in production code
	#[error(transparent)]
	Generic(#[from] anyhow::Error),
}

/// Convenience type alias for this crate's error type
pub type Result<T> = std::result::Result<T, Error>;