diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-06-21 20:19:54 +0200 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2024-08-21 12:44:07 +0200 |
| commit | 160e1c38ceab0ae8876c2bf5f12438edd4d9b018 (patch) | |
| tree | 9eb219e82e95eb198e03bd9207cd08dd055a21a3 /embassy-net-nrf91/Cargo.toml | |
| parent | aff66b9695a70222b20c19585f04df2ecbabccb1 (diff) | |
Add embassy-net-nrf91.
Diffstat (limited to 'embassy-net-nrf91/Cargo.toml')
| -rw-r--r-- | embassy-net-nrf91/Cargo.toml | 37 |
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] | ||
| 2 | name = "embassy-net-nrf91" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | description = "embassy-net driver for Nordic nRF91-series cellular modems" | ||
| 6 | keywords = ["embedded", "nrf91", "embassy-net", "cellular"] | ||
| 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] | ||
| 8 | license = "MIT OR Apache-2.0" | ||
| 9 | repository = "https://github.com/embassy-rs/embassy" | ||
| 10 | documentation = "https://docs.embassy.dev/embassy-net-nrf91" | ||
| 11 | |||
| 12 | [features] | ||
| 13 | defmt = [ "dep:defmt", "heapless/defmt-03" ] | ||
| 14 | log = [ "dep:log" ] | ||
| 15 | |||
| 16 | [dependencies] | ||
| 17 | defmt = { version = "0.3", optional = true } | ||
| 18 | log = { version = "0.4.14", optional = true } | ||
| 19 | |||
| 20 | nrf9160-pac = { version = "0.12.0" } | ||
| 21 | |||
| 22 | embassy-time = { version = "0.3.1", path = "../embassy-time" } | ||
| 23 | embassy-sync = { version = "0.6.0", path = "../embassy-sync"} | ||
| 24 | embassy-futures = { version = "0.1.0", path = "../embassy-futures"} | ||
| 25 | embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel"} | ||
| 26 | |||
| 27 | heapless = "0.8" | ||
| 28 | embedded-io = "0.6.1" | ||
| 29 | |||
| 30 | [package.metadata.embassy_docs] | ||
| 31 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-nrf91-v$VERSION/embassy-net-nrf91/src/" | ||
| 32 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-nrf91/src/" | ||
| 33 | target = "thumbv7em-none-eabi" | ||
| 34 | features = ["defmt"] | ||
| 35 | |||
| 36 | [package.metadata.docs.rs] | ||
| 37 | features = ["defmt"] | ||
