Cargo Features

[dependencies]
silpkg = { version = "0.1.1", default-features = false, features = ["std", "unstable_base"] }
default = std

The std feature is set by default whenever silpkg is added without default-features = false somewhere in the dependency tree.

std default

Enables std of log and thiserror

thiserror:

Std feature enables support for formatting std::path::{Path, PathBuf}
conveniently in an error message.

#[derive(Error, Debug)]
#[error("failed to create configuration file {path}")]
pub struct MyError {
pub path: PathBuf,
pub source: std::io::Error,
}

Without std, this would need to be written #[error("... {}", path.display())].

Affects silpkg::sync, util::ReadExt, util::WriteExt, util::ReadSeekWriteExt

unstable_base

Affects silpkg::base