summaryrefslogtreecommitdiff
path: root/examples/std
AgeCommit message (Collapse)Author
2022-08-30net: feature-gate nightly-only async traits to allow building on stable.Dario Nieuwenhuis
2022-08-22split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis
2022-08-22Remove Forever, switch to static_cell.Dario Nieuwenhuis
2022-08-18Split embassy-time from embassy-executor.Dario Nieuwenhuis
2022-08-17Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis
2022-08-10Add UDP example appArtur Kowalski
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-06-18Remove the authors field from Cargo.tomlsDario 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-18Update to 2021 edition. (#820)Dario Nieuwenhuis
2022-06-12Run rustfmt.Dario Nieuwenhuis
2022-05-25WIP embassy-net v2Dario Nieuwenhuis
2022-05-19Make 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-19Update embedded-io to 0.3Dario Nieuwenhuis
2022-05-07Replace embassy::io with embedded_io.Dario Nieuwenhuis
2022-05-02net: add functions to get current Eth and IP configDario Nieuwenhuis
2022-04-13net: auto-enable defmt in smoltcp using namespaced features.Dario Nieuwenhuis
2022-02-12embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.Dario Nieuwenhuis
2021-12-08Do not use exported Result to mitigate problems with clap.Matous Hybl
2021-12-06Fix embassy-net documentation of running examples.Matous Hybl
2021-11-26net: update smoltcpDario Nieuwenhuis
2021-11-24net: don't depend directly on smoltcp outside embassy-netDario Nieuwenhuis
2021-11-15Further cargo muckings for smol/defmt.Bob McWhirter
2021-11-07Replace 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-18examples/std: fix warningDario Nieuwenhuis
2021-10-18Update clapDario Nieuwenhuis
2021-09-11Update lots of depsDario Nieuwenhuis
2021-09-03Remove trait_alias, allow(incomplete_features).Dario Nieuwenhuis
trait_alias seems unused. no idea why it's there.
2021-09-02Fix embassy::main macros for std targetUlf Lilleengen
2021-08-25std: fold into embassy core, add non-hacky time driver.Dario Nieuwenhuis
2021-08-04Update nightly, remove removed features.Dario Nieuwenhuis
2021-07-04Fix warnings in std and rpRukai
2021-06-20net: Make the user pass in the StackResources in initThales Fragoso
By having the user pass in the resources, we can make them generic, this way the user can choose the size of the individual resources
2021-06-12UPdate smoltcpDario Nieuwenhuis
2021-06-04Update heaplessDario Nieuwenhuis
2021-06-02Move examples to a subdirectoryDario Nieuwenhuis