[package] name = "ockam_transport_core" version = "0.99.0" authors = ["Ockam Developers"] categories = ["network-programming", "asynchronous"] edition = "2021" homepage = "https://github.com/build-trust/ockam" keywords = ["ockam", "ockam-transport"] license = "Apache-2.0" publish = true readme = "README.md" repository = "https://github.com/build-trust/ockam/implementations/rust/ockam/ockam_transport_core" rust-version = "1.70.0" description = """ Generic Transport primitives. """ [features] default = ["std"] # Feature (enabled by default): "std" enables functionality expected to # be available on a standard platform. std = ["ockam_core/std", "minicbor/std", "serde/std", "url"] # Feature: "no_std" enables functionality required for platforms # without the standard library. no_std = ["ockam_core/no_std"] # Feature: "alloc" enables support for heap allocation on "no_std" # platforms, requires nightly. alloc = ["ockam_core/alloc", "minicbor/alloc"] [dependencies] minicbor = { version = "0.25.1", default-features = false, features = ["derive"] } ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false } serde = { version = "1.0.204", default-features = false, features = ["derive"] } url = { version = "2.2", optional = true }