ockam_core 0.55.0

Core types of the Ockam library.
docs.rs failed to build ockam_core-0.55.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: ockam_core-0.106.0

ockam_core

crate docs license discuss

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.

This crate contains the core types of the Ockam library and is intended for use by crates that provide features and add-ons to the main Ockam library.

The main Ockam crate re-exports types defined in this crate.

Usage

Add this to your Cargo.toml:

[dependencies]
ockam_core = "0.55.0"

Crate Features

The ockam_core crate has a Cargo feature named "std" that is enabled by default. In order to use this crate in a no_std context this feature can be disabled as follows

[dependencies]
ockam_core = { version = "0.55.0" , default-features = false }

Please note that Cargo features are unioned across the entire dependency graph of a project. If any other crate you depend on has not opted out of ockam_core default features, Cargo will build ockam_core with the std feature enabled whether or not your direct dependency on ockam_core has default-features = false.

License

This code is licensed under the terms of the Apache License 2.0.