forked from martindisch/coap-lite
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (30 loc) · 1003 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
[package]
name = "coap-lite"
description = """
A lightweight CoAP message manipulation crate, ideal for embedded environments.
"""
version = "0.7.0"
authors = ["Martin Disch <[email protected]>"]
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 = "2018"
[lib]
doctest = false
[dependencies]
coap-message = { version = "^0.2.0-alpha.0", optional = true }
log = { version = "0.4.14", default-features = false, optional = true }
# actually they are dev-dependencies, but those can't be optional
coap-handler = { version = "^0.1.0-alpha.0", optional = true }
[features]
default = ["std"]
std = []
with-coap-message = ["coap-message"]
example-server_coaphandler = ["with-coap-message", "coap-handler"]
[badges]
maintenance = { status = "passively-maintained" }
[[example]]
name = "server_coaphandler"
required-features = ["example-server_coaphandler"]