-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
39 lines (32 loc) · 975 Bytes
/
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
35
36
37
38
39
[package]
name = "coap-lite"
description = """
A lightweight CoAP message manipulation crate, ideal for embedded environments.
"""
version = "0.13.0"
authors = ["Martin Disch <martindisch@gmail.com>"]
repository = "https://github.com/martindisch/coap-lite"
readme = "README.md"
keywords = ["coap"]
categories = ["network-programming", "no-std", "embedded"]
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
doctest = false
[dependencies]
coap-message = "0.2.3"
coap-message-0-3 = { package = "coap-message", version = "0.3" }
log = { version = "0.4.19", default-features = false, optional = true }
lru_time_cache = { version = "0.11.11", optional = true }
[dev-dependencies]
coap-handler = "0.2.0"
coap-handler-implementations = "0.5.0"
[features]
default = ["std"]
std = ["lru_time_cache"]
# UDP feature enables additional optimizations for CoAP over UDP.
udp = []
[badges]
maintenance = { status = "passively-maintained" }
[[example]]
name = "server_coaphandler"