Cargo Features

[dependencies]
blueprint-clients = { version = "0.1.0-alpha.6", default-features = false, features = ["std", "web", "eigenlayer", "evm", "tangle"] }
default = std

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

std default

Enables std of optional blueprint-client-eigenlayer, optional blueprint-client-evm, optional blueprint-client-tangle, blueprint-std, 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())].

web

Enables web of optional blueprint-client-tangle

eigenlayer

Enables blueprint-client-eigenlayer

evm

Enables blueprint-client-evm

tangle

Enables blueprint-client-tangle

blueprint-clients has 6 features without comments.