-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
48 lines (41 loc) · 1.14 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "semtech-udp"
version = "0.12.0"
authors = ["Louis Thiery <thiery.louis@gmail.com>"]
edition = "2021"
description = "Semtech UDP provides serialization and deserialization of packets complying with the Semtech UDP protocol"
license = "Apache-2.0"
keywords = ["lorawan", "iot", "lpwan", "semtech", "gwmp"]
repository = "https://github.com/helium/semtech-udp/"
[[example]]
name = "server"
required-features = ["server"]
[[example]]
name = "server_split"
required-features = ["server"]
[[example]]
name = "client"
required-features = ["client"]
[dependencies]
arrayref = "0"
base64 = ">=0.21"
lora-modulation = ">=0.1.5"
macaddr = "1"
num_enum = "0"
rand = "0"
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = "1"
serde_repr = "0"
tokio = { version = "1", optional = true, features = ["rt", "net", "sync", "time", "macros"]}
thiserror = "1"
triggered = "0"
[dev-dependencies]
structopt = { version = "0.3.2", default-features = false }
hex = "0"
[dev-dependencies.tokio]
version = "1"
features = ["macros", "sync", "time", "rt-multi-thread"]
[features]
default = []
server = ["tokio"]
client = ["tokio"]