Crates.io | ockam_core |
lib.rs | ockam_core |
version | 0.119.0 |
source | src |
created_at | 2021-01-30 20:42:44.949799 |
updated_at | 2024-10-23 03:46:23.256175 |
description | Core types of the Ockam library. |
homepage | https://github.com/build-trust/ockam |
repository | https://github.com/build-trust/ockam/implementations/rust/ockam/ockam_core |
max_upload_size | |
id | 348598 |
size | 283,937 |
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.
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 = "<current version>" , 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
.
Add this to your Cargo.toml
:
[dependencies]
ockam_core = "0.119.0"
This code is licensed under the terms of the Apache License 2.0.