-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
32 lines (29 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "embedded-websocket"
version = "0.9.4"
authors = ["David Haig"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ninjasource/embedded-websockets.git"
description = "A lightweight websocket library for embedded systems (no_std)"
keywords = ["websockets", "websocket", "embedded", "no_std"]
categories = ["embedded", "no-std", "network-programming"]
readme = "README.md"
[dependencies]
sha1 = { version = "0.10.6", default-features = false }
heapless = { version = "0.7.16", default-features = false }
byteorder = { version = "1.5.0", default-features = false }
httparse = { version = "1.9.5", default-features = false }
rand_core = { version = "0.6.4", default-features = false }
base64 = { version = "0.13.1", default-features = false }
futures = { version = "0.3.31", default-features = false }
[dev-dependencies]
rand = "0.8.5"
bytes = "1.9.0"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tokio-util = { version = "0.7.13", features = ["net", "codec"] }
# see readme for no_std support
[features]
default = ["std"]
# default = []
std = ["httparse/std"]