diff options
| author | Ulf Lilleengen <[email protected]> | 2025-08-14 13:36:39 +0200 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2025-08-25 19:44:49 +0200 |
| commit | 6a347f1f09b0076af868dcd63d9139081c92172b (patch) | |
| tree | 27ccbc753f0950cbbdbd0cda73d24eb419b7cd96 /release/config.toml | |
| parent | ac60eaeddd9c4accbe8dc20d0486382940723efb (diff) | |
feat: add semver checks and releasing to releaser
* List dependencies of a crate
* List dependents of a crate
* Perform semver-checks of a crate
* Prepare a release for a crate and all dependents
* Use a single release.toml for cargo-release
* Add changelogs where missing
Diffstat (limited to 'release/config.toml')
| -rw-r--r-- | release/config.toml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/release/config.toml b/release/config.toml index 2292f4077..6b23217fa 100644 --- a/release/config.toml +++ b/release/config.toml | |||
| @@ -1 +1,46 @@ | |||
| 1 | |||
| 2 | embassy-stm32 = { features = ["defmt", "unstable-pac", "exti", "time-driver-any", "time", "stm32h755zi-cm7", "dual-bank"], target = "thumbv7em-none-eabi" } | ||
| 3 | embassy-nrf = { features = ["nrf52840", "time", "defmt", "unstable-pac", "gpiote", "time-driver-rtc1"], target = "thumbv7em-none-eabihf" } | ||
| 4 | |||
| 1 | embassy-rp = { features = ["defmt", "unstable-pac", "time-driver", "rp2040"], target = "thumbv6m-none-eabi" } | 5 | embassy-rp = { features = ["defmt", "unstable-pac", "time-driver", "rp2040"], target = "thumbv6m-none-eabi" } |
| 6 | cyw43 = { features = ["defmt", "firmware-logs"], target = "thumbv6m-none-eabi" } | ||
| 7 | #cyw43-pio = { features = ["defmt", "embassy-rp/rp2040"], target = "thumbv6m-none-eabi" } | ||
| 8 | |||
| 9 | embassy-boot = { features = ["defmt"] } | ||
| 10 | #embassy-boot-nrf = { features = ["defmt", "embassy-nrf/nrf52840"], target = "thumbv7em-none-eabihf" } | ||
| 11 | #embassy-boot-rp = { features = ["defmt", "embassy-rp/rp2040"], target = "thumbv6m-none-eabi" } | ||
| 12 | #embassy-boot-stm32 = { features = ["defmt", "embassy-stm32/stm32f429zi"], target = "thumbv7em-none-eabi" } | ||
| 13 | |||
| 14 | embassy-time = { features = ["defmt", "std"] } | ||
| 15 | embassy-time-driver = { } | ||
| 16 | embassy-time-queue-utils = { features = ["defmt"] } | ||
| 17 | |||
| 18 | embassy-futures = { } | ||
| 19 | embassy-embedded-hal = { features = ["time"] } | ||
| 20 | embassy-hal-internal = { } | ||
| 21 | embassy-executor = { features = ["defmt", "arch-cortex-m", "executor-thread", "executor-interrupt"], target = "thumbv7em-none-eabi" } | ||
| 22 | embassy-executor-macros = { } | ||
| 23 | embassy-sync = { } | ||
| 24 | |||
| 25 | embassy-net = { features = ["defmt", "tcp", "udp", "raw", "dns", "icmp", "dhcpv4", "proto-ipv6", "medium-ethernet", "medium-ip", "medium-ieee802154", "multicast", "dhcpv4-hostname"] } | ||
| 26 | embassy-net-ppp = { } | ||
| 27 | embassy-net-esp-hosted = {} | ||
| 28 | embassy-net-driver-channel = {} | ||
| 29 | embassy-net-wiznet = {} | ||
| 30 | embassy-net-nrf91 = { features = ["defmt", "nrf9160"] } | ||
| 31 | embassy-net-driver = {} | ||
| 32 | embassy-net-tuntap = {} | ||
| 33 | embassy-net-adin1110 = {} | ||
| 34 | embassy-net-enc28j60 = {} | ||
| 35 | |||
| 36 | embassy-usb-driver = { } | ||
| 37 | embassy-usb-dfu = { features = ["dfu"] } | ||
| 38 | embassy-usb-synopsys-otg = { } | ||
| 39 | embassy-usb = { features = ["defmt", "usbd-hid"] } | ||
| 40 | embassy-usb-logger = { } | ||
| 41 | |||
| 42 | # Unreleased | ||
| 43 | # embassy-stm32-wpan = {} | ||
| 44 | # embassy-imxrt = {} | ||
| 45 | # embassy-nxp = {} | ||
| 46 | # embassy-mspm0 = {} | ||
