ockam_transport_websocket 0.14.0

WebSocket Transport for the Ockam Routing Protocol.
Documentation
[package]
name = "ockam_transport_websocket"
version = "0.14.0"
authors = ["Ockam Developers"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/ockam-network/ockam"
repository = "https://github.com/ockam-network/ockam/implementations/rust/ockam/ockam_transport_websocket"
readme = "README.md"
keywords = ["ockam", "websocket", "ockam-transport"]
categories = ["network-programming", "asynchronous"]
description = """
WebSocket Transport for the Ockam Routing Protocol.
"""
exclude = [
    "DEVELOP.md",
    "LICENSE"
]

[features]
default = ["std"]
std = []

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures-channel = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["tokio-io"] }
ockam_core = { path = "../ockam_core", version = "0.26.0"            }
ockam_node = { path = "../ockam_node", version = "0.24.0"            }
serde_bare = "0.4.0"
tokio = { version = "1.8", features = ["rt-multi-thread", "sync", "net", "macros", "time"] }
tokio-tungstenite = "0.15"
tracing = "0.1"

[dev-dependencies]
ockam = { path = "../ockam", features = ["std"] }