Adding ciborium_io library as a dependency
Run this command in a terminal, in your project's directory:
cargo add --dev ciborium-io
to add it a dev dependency (if it's used only in tests, not in the final product). To add it as a regular run-time dependency, run:
cargo add ciborium-io
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
ciborium-io = "0.2.2"
The ciborium_io library will be automatically available globally.
Read the ciborium_io library documentation.
Back to the crate overview.