Cargo Features

[dependencies]
casper-client = { version = "3.0.1", default-features = false, features = ["std-fs-io", "async-trait", "clap", "clap_complete"] }
default = async-trait, clap, clap_complete, std-fs-io

These default features are set whenever casper-client is added without default-features = false somewhere in the dependency tree.

std-fs-io default

Enables std-fs-io of casper-types

casper-types:

Includes a complete set of std lib functionality, including filesystem I/O operations.

Affects deploy::sign_deploy_file, deploy::send_deploy_file, deploy::speculative_send_deploy_file, transaction::send_transaction_file, transaction::speculative_send_transaction_file, transaction::sign_transaction_file, cli::json_pretty_print, cli::verify_contract, casper-client::keygen

Required by the binary

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

async-trait default

Required by the binary

clap default

Enables clap ~4.4

Required by the binary

clap_complete default

Enables clap_complete ~4.4

Required by the binary