embedded-websocket 0.9.5

A lightweight websocket library for embedded systems (no_std)
Documentation
# 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"
name = "embedded-websocket"
version = "0.9.5"
authors = ["David Haig"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight websocket library for embedded systems (no_std)"
readme = "README.md"
keywords = [
    "websockets",
    "websocket",
    "embedded",
    "no_std",
]
categories = [
    "embedded",
    "no-std",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ninjasource/embedded-websockets.git"

[features]
default = ["std"]
std = ["httparse/std"]

[lib]
name = "embedded_websocket"
path = "src/lib.rs"

[[example]]
name = "client"
path = "examples/client.rs"

[[example]]
name = "client_async"
path = "examples/client_async.rs"

[[example]]
name = "server"
path = "examples/server.rs"

[[example]]
name = "server_async"
path = "examples/server_async.rs"

[dependencies.base64]
version = "0.13.1"
default-features = false

[dependencies.byteorder]
version = "1.5.0"
default-features = false

[dependencies.futures]
version = "0.3.31"
default-features = false

[dependencies.heapless]
version = "0.7.16"
default-features = false

[dependencies.httparse]
version = "1.9.5"
default-features = false

[dependencies.rand_core]
version = "0.6.4"
default-features = false

[dependencies.sha1]
version = "0.10.6"
default-features = false

[dev-dependencies.bytes]
version = "1.9.0"

[dev-dependencies.rand]
version = "0.8.5"

[dev-dependencies.tokio]
version = "1.42.0"
features = [
    "macros",
    "rt-multi-thread",
    "io-util",
]

[dev-dependencies.tokio-util]
version = "0.7.13"
features = [
    "net",
    "codec",
]