Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-30 | net: feature-gate nightly-only async traits to allow building on stable. | Dario Nieuwenhuis | |
2022-08-22 | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | |
2022-08-22 | Remove Forever, switch to static_cell. | Dario Nieuwenhuis | |
2022-08-18 | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | |
2022-08-17 | Update to critical-section 1.0, atomic-polyfill 1.0 | Dario Nieuwenhuis | |
2022-08-10 | Add UDP example app | Artur Kowalski | |
2022-07-29 | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | |
2022-06-18 | Remove the authors field from Cargo.tomls | Dario Nieuwenhuis | |
It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors". | |||
2022-06-18 | Update to 2021 edition. (#820) | Dario Nieuwenhuis | |
2022-05-19 | Make embassy-net nightly-only. | Dario Nieuwenhuis | |
It's useless without async traits, so juggling the `nightly` feature around is not worth the pain. | |||
2022-05-19 | Update embedded-io to 0.3 | Dario Nieuwenhuis | |
2022-05-07 | Replace embassy::io with embedded_io. | Dario Nieuwenhuis | |
2022-04-13 | net: auto-enable defmt in smoltcp using namespaced features. | Dario Nieuwenhuis | |
2022-02-12 | embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features. | Dario Nieuwenhuis | |
2021-12-06 | Fix embassy-net documentation of running examples. | Matous Hybl | |
2021-11-24 | net: don't depend directly on smoltcp outside embassy-net | Dario Nieuwenhuis | |
2021-11-15 | Further cargo muckings for smol/defmt. | Bob McWhirter | |
2021-11-07 | Replace rustflags with build.rs extra-link-args. | Dario Nieuwenhuis | |
Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default. | |||
2021-10-18 | Update clap | Dario Nieuwenhuis | |
2021-09-11 | Update lots of deps | Dario Nieuwenhuis | |
2021-08-25 | std: fold into embassy core, add non-hacky time driver. | Dario Nieuwenhuis | |
2021-06-12 | UPdate smoltcp | Dario Nieuwenhuis | |
2021-06-04 | Update heapless | Dario Nieuwenhuis | |
2021-06-02 | Move examples to a subdirectory | Dario Nieuwenhuis | |