# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.56.0" name = "ockam_channel" version = "0.72.0" authors = ["Ockam Developers"] publish = true description = """ Channel is an abstraction responsible for sending messages (usually over the network) in encrypted and authenticated way. """ homepage = "https://github.com/build-trust/ockam" readme = "README.md" keywords = [ "ockam", "crypto", "encryption", "authentication", ] categories = [ "cryptography", "asynchronous", "authentication", "no-std", "algorithms", ] license = "Apache-2.0" repository = "https://github.com/build-trust/ockam/tree/develop/implementations/rust/ockam/ockam_vault" resolver = "2" [dependencies.ockam_core] version = "^0.72.0" default_features = false [dependencies.ockam_key_exchange_core] version = "^0.63.0" default_features = false [dependencies.ockam_key_exchange_xx] version = "^0.68.0" optional = true default_features = false [dependencies.ockam_macros] version = "^0.26.0" default_features = false [dependencies.ockam_node] version = "^0.75.0" default_features = false [dependencies.ockam_vault] version = "^0.68.0" optional = true default_features = false [dependencies.rand] version = "0.8" default-features = false [dependencies.rand_pcg] version = "0.3.1" optional = true default-features = false [dependencies.serde] version = "1.0" features = ["derive"] default-features = false [dependencies.tracing] version = "0.1" default_features = false [dev-dependencies.ockam_key_exchange_x3dh] version = "^0.67.0" [dev-dependencies.ockam_key_exchange_xx] version = "^0.68.0" [dev-dependencies.ockam_vault] version = "^0.68.0" [dev-dependencies.tokio] version = "1.24" features = [ "rt-multi-thread", "sync", "net", "macros", "time", "io-util", ] [dev-dependencies.trybuild] version = "1.0" features = ["diff"] [features] alloc = [ "ockam_core/alloc", "ockam_key_exchange_core/alloc", "ockam_key_exchange_xx/alloc", "ockam_node/alloc", "ockam_vault/alloc", "serde/alloc", ] default = ["std"] no_std = [ "ockam_core/no_std", "ockam_macros/no_std", "ockam_key_exchange_core/no_std", "ockam_key_exchange_xx/no_std", "ockam_node/no_std", "ockam_vault/no_std", "rand_pcg", ] noise_xx = ["ockam_key_exchange_xx"] software_vault = ["ockam_vault"] std = [ "alloc", "ockam_core/std", "ockam_macros/std", "ockam_key_exchange_core/std", "ockam_key_exchange_xx/std", "ockam_node/std", "ockam_vault/std", "rand/std", "rand/std_rng", ]