forked from ivmarkov/edge-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 1.06 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
33
34
[package]
name = "edge-http"
version = "0.2.1"
edition = "2021"
rust-version = "1.77"
description = "Async + `no_std` + no-alloc implementation of the HTTP protocol"
repository = "https://github.com/ivmarkov/edge-net"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = [
"embedded",
"no-std",
"asynchronous",
"networking",
"http"
]
[features]
default = ["io"]
std = ["io"]
io = ["embedded-io-async", "edge-nal", "embassy-sync", "embassy-futures", "embassy-time"]
[dependencies]
embedded-io-async = { workspace = true, optional = true }
edge-nal = { workspace = true, optional = true }
embedded-svc = { workspace = true, optional = true, default-features = false }
heapless = { workspace = true }
log = { workspace = true }
embassy-sync = { workspace = true, optional = true }
embassy-futures = { workspace = true, optional = true }
embassy-time = { workspace = true, optional = true }
httparse = { version = "1.7", default-features = false }
base64 = { version = "0.13", default-features = false }
sha1_smol = { version = "1", default-features = false }