ockam_channel 0.32.0

Channel is an abstraction responsible for sending messages (usually over the network) in encrypted and authenticated way.
Documentation
[package]
name = "ockam_channel"
version = "0.32.0"
authors = ["Ockam Developers"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/ockam-network/ockam"
repository = "https://github.com/ockam-network/ockam/tree/develop/implementations/rust/ockam/ockam_vault"
readme = "README.md"
categories = ["cryptography", "asynchronous", "authentication","no-std", "algorithms"]
keywords = ["ockam", "crypto", "encryption", "authentication"]
description = """Channel is an abstraction responsible for sending messages (usually over the network)
in encrypted and authenticated way.
"""

[features]
default = ["std"]
software_vault = ["ockam_vault", "ockam_vault_sync_core", "ockam_vault_sync_core/software_vault"]
noise_xx = ["ockam_key_exchange_xx"]

# Option (enabled by default): "std" enables functionality expected to
# be available on a standard platform.
std = ["alloc", "ockam_core/std", "ockam_key_exchange_core/std", "ockam_key_exchange_xx/std", "ockam_node/std", "ockam_vault_core/std", "ockam_vault_sync_core/std", "ockam_vault/std", "rand/std", "rand/std_rng"]

# Feature: "no_std" enables functionality required for platforms
# without the standard library, requires nightly.
no_std = ["ockam_core/no_std", "ockam_key_exchange_core/no_std", "ockam_key_exchange_xx/no_std", "ockam_node/no_std", "ockam_vault_core/no_std", "ockam_vault_sync_core/no_std", "ockam_vault/no_std", "rand_pcg"]

# Feature: "alloc" enables support for heap allocation (implied by `feature = "std"`)
alloc = ["ockam_core/alloc", "ockam_key_exchange_core/alloc", "ockam_key_exchange_xx/alloc", "ockam_node/alloc", "ockam_vault_core/alloc",  "ockam_vault_sync_core/alloc", "ockam_vault/alloc", "serde/alloc"]

[dependencies]
ockam_core = { path = "../ockam_core", version = "0.36.0", default_features = false }
ockam_key_exchange_core = { path = "../ockam_key_exchange_core", version = "0.28.0", default_features = false }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "0.29.0" , default_features = false, optional = true }
ockam_node = { path = "../ockam_node", version = "0.35.0" , default_features = false }
ockam_vault_core = { path = "../ockam_vault_core", version = "0.30.0", default_features = false, optional = true }
ockam_vault_sync_core = { path = "../ockam_vault_sync_core", version = "0.28.0" , default_features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "0.30.0", default_features = false, optional = true }
rand = { version = "0.8", default-features = false }
rand_pcg = { version = "0.3.1", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"] }
tracing = { version = "0.1", default_features = false }

[dev-dependencies]
ockam_vault = { path = "../ockam_vault", version = "0.30.0"         }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "0.29.0"          }
ockam_key_exchange_x3dh = { path = "../ockam_key_exchange_x3dh", version = "0.28.0"          }
ockam_vault_sync_core = { path = "../ockam_vault_sync_core", version = "0.28.0"          }
trybuild = {version = "1.0", features = ["diff"]}