-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
44 lines (38 loc) · 1.39 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 = "nrf-modem"
version = "0.6.0"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
description = "Async modem api for the nRF91xx"
homepage = "https://github.com/diondokter/nrf-modem"
repository = "https://github.com/diondokter/nrf-modem"
readme = "README.md"
keywords = ["nRF91", "LTE", "GPS", "NB-IoT", "embedded"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nrfxlib-sys = "=2.7.1"
futures = { version = "0.3.24", default-features = false, features = ["async-await"] }
num_enum = { version = "0.7.0", default-features = false }
defmt = { version = "0.3", optional = true }
cortex-m = "0.7"
linked_list_allocator = { version="0.10.1", default-features=false, features=["use_spin"] }
arrayvec = { version = "0.7", default-features = false }
nrf9160-pac = { version = "0.12.2", optional = true }
nrf9120-pac = { version = "0.12.2", optional = true }
at-commands = "0.5.2"
critical-section = "1.1"
embassy-sync = "0.6.0"
embassy-time = { version = "0.3.0", optional = true }
grounded = "0.2.0"
embedded-io-async = "0.6.1"
[features]
default = []
defmt = ["dep:defmt", "at-commands/defmt"]
dns-async = ["dep:embassy-time"]
nrf9160 = ["nrfxlib-sys/nrf9160", "dep:nrf9160-pac"]
nrf9151 = ["nrf9120"]
nrf9161 = ["nrf9120"]
nrf9120 = ["nrfxlib-sys/nrf9120", "dep:nrf9120-pac"]
[package.metadata.docs.rs]
features = ["nrf9160"]