-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (37 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
[package]
name = "esp-at-nal"
description = "Network layer client for ESP-AT modems"
keywords = ["ESP8266", "network", "no_std", "at"]
categories = ["embedded", "network-programming", "no-std"]
authors = ["PEGASUS GmbH <[email protected]>"]
license = "MIT OR Apache-2.0"
version = "0.3.0"
edition = "2021"
repository = "https://github.com/pegasus-aero/rt-esp-at-nal"
readme = "README.md"
documentation = "https://docs.rs/esp-at-nal"
[dependencies]
atat = "0.18.0"
embedded-nal = "0.8.0"
nb = "1.0.0"
fugit = "0.3.6"
fugit-timer = "0.1.3"
heapless = "0.7.16"
bbqueue = { version = "0.5.0", optional = true }
numtoa = "0.2"
base16 = { version = "0.2", default-features = false }
[dev-dependencies]
env_logger = "0.6"
log = "0.4"
mockall = "0.11.2"
serialport = { git = "https://github.com/dbrgn/serialport-rs", branch = "embedded-hal", features = ["embedded"], default_features = false }
[features]
default = ["examples"]
# Fail on warnings
strict = []
# Enables logging of ATAT crate
log = ['atat/log']
# Automic support for thumbv6m targets
thumbv6 = ['bbqueue/thumbv6']
# Contains mocks for doc examples and may be disabled for production.
examples = []