diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-01-12 00:35:01 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-01-12 00:39:01 +0100 |
| commit | 4c23f197b3225e8165f07ddf66ab54f774c4212f (patch) | |
| tree | 09f78edf2441ef1513e0f26ec5adddc2cf729b0a | |
| parent | 6a1c415a4c731f06e5ebf6932bd53168d89152c9 (diff) | |
Fix invalid "async" crates.io category.
| -rw-r--r-- | cyw43-pio/Cargo.toml | 2 | ||||
| -rw-r--r-- | cyw43/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-hal-internal/Cargo.toml | 10 | ||||
| -rw-r--r-- | embassy-net-adin1110/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net-enc28j60/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net-esp-hosted/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net-ppp/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net-tuntap/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net-wiznet/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-nrf/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-rp/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-stm32/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-usb-driver/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-usb/Cargo.toml | 2 |
14 files changed, 22 insertions, 14 deletions
diff --git a/cyw43-pio/Cargo.toml b/cyw43-pio/Cargo.toml index b14ad7349..157046b18 100644 --- a/cyw43-pio/Cargo.toml +++ b/cyw43-pio/Cargo.toml | |||
| @@ -4,7 +4,7 @@ version = "0.1.0" | |||
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "RP2040 PIO SPI implementation for cyw43" | 5 | description = "RP2040 PIO SPI implementation for cyw43" |
| 6 | keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] | 6 | keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] |
| 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 8 | license = "MIT OR Apache-2.0" | 8 | license = "MIT OR Apache-2.0" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/cyw43-pio" | 10 | documentation = "https://docs.embassy.dev/cyw43-pio" |
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml index 3b4aada00..c857f7378 100644 --- a/cyw43/Cargo.toml +++ b/cyw43/Cargo.toml | |||
| @@ -4,7 +4,7 @@ version = "0.1.0" | |||
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W." | 5 | description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W." |
| 6 | keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] | 6 | keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"] |
| 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 8 | license = "MIT OR Apache-2.0" | 8 | license = "MIT OR Apache-2.0" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/cyw43" | 10 | documentation = "https://docs.embassy.dev/cyw43" |
diff --git a/embassy-hal-internal/Cargo.toml b/embassy-hal-internal/Cargo.toml index 42e03199c..c5013f365 100644 --- a/embassy-hal-internal/Cargo.toml +++ b/embassy-hal-internal/Cargo.toml | |||
| @@ -3,6 +3,14 @@ name = "embassy-hal-internal" | |||
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Internal implementation details for Embassy HALs. DO NOT USE DIRECTLY." | ||
| 7 | repository = "https://github.com/embassy-rs/embassy" | ||
| 8 | documentation = "https://docs.embassy.dev/embassy-hal-internal" | ||
| 9 | categories = [ | ||
| 10 | "embedded", | ||
| 11 | "no-std", | ||
| 12 | "asynchronous", | ||
| 13 | ] | ||
| 6 | 14 | ||
| 7 | [features] | 15 | [features] |
| 8 | 16 | ||
| @@ -26,4 +34,4 @@ log = { version = "0.4.14", optional = true } | |||
| 26 | num-traits = { version = "0.2.14", default-features = false } | 34 | num-traits = { version = "0.2.14", default-features = false } |
| 27 | 35 | ||
| 28 | cortex-m = { version = "0.7.6", optional = true } | 36 | cortex-m = { version = "0.7.6", optional = true } |
| 29 | critical-section = { version = "1", optional = true } \ No newline at end of file | 37 | critical-section = { version = "1", optional = true } |
diff --git a/embassy-net-adin1110/Cargo.toml b/embassy-net-adin1110/Cargo.toml index 5cc399cdc..97579a467 100644 --- a/embassy-net-adin1110/Cargo.toml +++ b/embassy-net-adin1110/Cargo.toml | |||
| @@ -3,7 +3,7 @@ name = "embassy-net-adin1110" | |||
| 3 | version = "0.2.0" | 3 | version = "0.2.0" |
| 4 | description = "embassy-net driver for the ADIN1110 ethernet chip" | 4 | description = "embassy-net driver for the ADIN1110 ethernet chip" |
| 5 | keywords = ["embedded", "ADIN1110", "embassy-net", "embedded-hal-async", "ethernet"] | 5 | keywords = ["embedded", "ADIN1110", "embassy-net", "embedded-hal-async", "ethernet"] |
| 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
| 8 | edition = "2021" | 8 | edition = "2021" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
diff --git a/embassy-net-enc28j60/Cargo.toml b/embassy-net-enc28j60/Cargo.toml index ab594a2f4..23bd3da7e 100644 --- a/embassy-net-enc28j60/Cargo.toml +++ b/embassy-net-enc28j60/Cargo.toml | |||
| @@ -3,7 +3,7 @@ name = "embassy-net-enc28j60" | |||
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | description = "embassy-net driver for the ENC28J60 ethernet chip" | 4 | description = "embassy-net driver for the ENC28J60 ethernet chip" |
| 5 | keywords = ["embedded", "enc28j60", "embassy-net", "embedded-hal-async", "ethernet"] | 5 | keywords = ["embedded", "enc28j60", "embassy-net", "embedded-hal-async", "ethernet"] |
| 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
| 8 | edition = "2021" | 8 | edition = "2021" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
diff --git a/embassy-net-esp-hosted/Cargo.toml b/embassy-net-esp-hosted/Cargo.toml index dfca8bec6..dda65dbf9 100644 --- a/embassy-net-esp-hosted/Cargo.toml +++ b/embassy-net-esp-hosted/Cargo.toml | |||
| @@ -4,7 +4,7 @@ version = "0.1.0" | |||
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "embassy-net driver for ESP-Hosted" | 5 | description = "embassy-net driver for ESP-Hosted" |
| 6 | keywords = ["embedded", "esp-hosted", "embassy-net", "embedded-hal-async", "wifi"] | 6 | keywords = ["embedded", "esp-hosted", "embassy-net", "embedded-hal-async", "wifi"] |
| 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 7 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 8 | license = "MIT OR Apache-2.0" | 8 | license = "MIT OR Apache-2.0" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-net-esp-hosted" | 10 | documentation = "https://docs.embassy.dev/embassy-net-esp-hosted" |
diff --git a/embassy-net-ppp/Cargo.toml b/embassy-net-ppp/Cargo.toml index 59e9c084e..c4bea202f 100644 --- a/embassy-net-ppp/Cargo.toml +++ b/embassy-net-ppp/Cargo.toml | |||
| @@ -3,7 +3,7 @@ name = "embassy-net-ppp" | |||
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | description = "embassy-net driver for PPP over Serial" | 4 | description = "embassy-net driver for PPP over Serial" |
| 5 | keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"] | 5 | keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"] |
| 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
| 8 | edition = "2021" | 8 | edition = "2021" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
diff --git a/embassy-net-tuntap/Cargo.toml b/embassy-net-tuntap/Cargo.toml index 1044151ae..5d38fb013 100644 --- a/embassy-net-tuntap/Cargo.toml +++ b/embassy-net-tuntap/Cargo.toml | |||
| @@ -3,7 +3,7 @@ name = "embassy-net-tuntap" | |||
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | description = "embassy-net driver for Linux TUN/TAP interfaces." | 4 | description = "embassy-net driver for Linux TUN/TAP interfaces." |
| 5 | keywords = ["embedded", "tuntap", "embassy-net", "ethernet", "async"] | 5 | keywords = ["embedded", "tuntap", "embassy-net", "ethernet", "async"] |
| 6 | categories = ["embedded", "hardware-support", "network-programming", "async"] | 6 | categories = ["embedded", "hardware-support", "network-programming", "asynchronous"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
| 8 | edition = "2021" | 8 | edition = "2021" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
diff --git a/embassy-net-wiznet/Cargo.toml b/embassy-net-wiznet/Cargo.toml index b52aecc70..f87bf2bd0 100644 --- a/embassy-net-wiznet/Cargo.toml +++ b/embassy-net-wiznet/Cargo.toml | |||
| @@ -3,7 +3,7 @@ name = "embassy-net-wiznet" | |||
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | description = "embassy-net driver for WIZnet SPI Ethernet chips" | 4 | description = "embassy-net driver for WIZnet SPI Ethernet chips" |
| 5 | keywords = ["embedded", "embassy-net", "embedded-hal-async", "ethernet", "async"] | 5 | keywords = ["embedded", "embassy-net", "embedded-hal-async", "ethernet", "async"] |
| 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "async"] | 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
| 8 | edition = "2021" | 8 | edition = "2021" |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index f79da9d77..10f268b51 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2021" | |||
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Embassy Hardware Abstraction Layer (HAL) for nRF series microcontrollers" | 6 | description = "Embassy Hardware Abstraction Layer (HAL) for nRF series microcontrollers" |
| 7 | keywords = ["embedded", "async", "nordic", "nrf", "embedded-hal"] | 7 | keywords = ["embedded", "async", "nordic", "nrf", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "async"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-nrf" | 10 | documentation = "https://docs.embassy.dev/embassy-nrf" |
| 11 | 11 | ||
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 503d4bddc..ffed4c770 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2021" | |||
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 microcontroller" | 6 | description = "Embassy Hardware Abstraction Layer (HAL) for the Raspberry Pi RP2040 microcontroller" |
| 7 | keywords = ["embedded", "async", "raspberry-pi", "rp2040", "embedded-hal"] | 7 | keywords = ["embedded", "async", "raspberry-pi", "rp2040", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "async"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-rp" | 10 | documentation = "https://docs.embassy.dev/embassy-rp" |
| 11 | 11 | ||
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index ac672788f..f1539229f 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2021" | |||
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Embassy Hardware Abstraction Layer (HAL) for ST STM32 series microcontrollers" | 6 | description = "Embassy Hardware Abstraction Layer (HAL) for ST STM32 series microcontrollers" |
| 7 | keywords = ["embedded", "async", "stm32", "hal", "embedded-hal"] | 7 | keywords = ["embedded", "async", "stm32", "hal", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "async"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-stm32" | 10 | documentation = "https://docs.embassy.dev/embassy-stm32" |
| 11 | 11 | ||
diff --git a/embassy-usb-driver/Cargo.toml b/embassy-usb-driver/Cargo.toml index 6d36106cd..837878621 100644 --- a/embassy-usb-driver/Cargo.toml +++ b/embassy-usb-driver/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2021" | |||
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Driver trait for `embassy-usb`, an async USB device stack for embedded devices." | 6 | description = "Driver trait for `embassy-usb`, an async USB device stack for embedded devices." |
| 7 | keywords = ["embedded", "async", "usb", "hal", "embedded-hal"] | 7 | keywords = ["embedded", "async", "usb", "hal", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "async"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-usb-driver" | 10 | documentation = "https://docs.embassy.dev/embassy-usb-driver" |
| 11 | 11 | ||
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml index be810b510..1b31b6145 100644 --- a/embassy-usb/Cargo.toml +++ b/embassy-usb/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2021" | |||
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Async USB device stack for embedded devices in Rust." | 6 | description = "Async USB device stack for embedded devices in Rust." |
| 7 | keywords = ["embedded", "async", "usb", "hal", "embedded-hal"] | 7 | keywords = ["embedded", "async", "usb", "hal", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "async"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
| 9 | repository = "https://github.com/embassy-rs/embassy" | 9 | repository = "https://github.com/embassy-rs/embassy" |
| 10 | documentation = "https://docs.embassy.dev/embassy-usb" | 10 | documentation = "https://docs.embassy.dev/embassy-usb" |
| 11 | 11 | ||
