[package]
name = "ockam_executor"
version = "0.86.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
"asynchronous",
"authentication",
"no-std",
"algorithms",
]
edition = "2021"
homepage = "https://github.com/build-trust/ockam"
keywords = ["ockam", "crypto", "encryption", "authentication"]
license = "Apache-2.0"
publish = true
repository = "https://github.com/build-trust/ockam/tree/develop/implementations/rust/ockam/ockam_executor"
rust-version = "1.70.0"
description = "Ockam async executor crate"
[features]
default = ["std"]
std = ["alloc", "futures/std", "ockam_core/std"]
alloc = ["futures/alloc", "ockam_core/alloc"]
no_std = ["ockam_core/no_std"]
[dependencies]
crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] }
futures = { version = "0.3.30", default-features = false, features = ["async-await"] }
heapless = { version = "0.8", features = ["mpmc_large"] }
ockam_core = { path = "../ockam_core", version = "^0.117.0", default-features = false }
pin-project-lite = "0.2"
tracing = { version = "0.1", default-features = false }