aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-nrf91/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-06-21 20:19:54 +0200
committerUlf Lilleengen <[email protected]>2024-08-21 12:44:07 +0200
commit160e1c38ceab0ae8876c2bf5f12438edd4d9b018 (patch)
tree9eb219e82e95eb198e03bd9207cd08dd055a21a3 /embassy-net-nrf91/Cargo.toml
parentaff66b9695a70222b20c19585f04df2ecbabccb1 (diff)
Add embassy-net-nrf91.
Diffstat (limited to 'embassy-net-nrf91/Cargo.toml')
-rw-r--r--embassy-net-nrf91/Cargo.toml37
1 files changed, 37 insertions, 0 deletions
diff --git a/embassy-net-nrf91/Cargo.toml b/embassy-net-nrf91/Cargo.toml
new file mode 100644
index 000000000..2156346a4
--- /dev/null
+++ b/embassy-net-nrf91/Cargo.toml
@@ -0,0 +1,37 @@
1[package]
2name = "embassy-net-nrf91"
3version = "0.1.0"
4edition = "2021"
5description = "embassy-net driver for Nordic nRF91-series cellular modems"
6keywords = ["embedded", "nrf91", "embassy-net", "cellular"]
7categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
8license = "MIT OR Apache-2.0"
9repository = "https://github.com/embassy-rs/embassy"
10documentation = "https://docs.embassy.dev/embassy-net-nrf91"
11
12[features]
13defmt = [ "dep:defmt", "heapless/defmt-03" ]
14log = [ "dep:log" ]
15
16[dependencies]
17defmt = { version = "0.3", optional = true }
18log = { version = "0.4.14", optional = true }
19
20nrf9160-pac = { version = "0.12.0" }
21
22embassy-time = { version = "0.3.1", path = "../embassy-time" }
23embassy-sync = { version = "0.6.0", path = "../embassy-sync"}
24embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
25embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel"}
26
27heapless = "0.8"
28embedded-io = "0.6.1"
29
30[package.metadata.embassy_docs]
31src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-nrf91-v$VERSION/embassy-net-nrf91/src/"
32src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-nrf91/src/"
33target = "thumbv7em-none-eabi"
34features = ["defmt"]
35
36[package.metadata.docs.rs]
37features = ["defmt"]