aboutsummaryrefslogtreecommitdiff
path: root/examples/std/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
|
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-031-1/+1
| | | | | | | | | This introduces a `Pender` struct with enum cases for thread-mode, interrupt-mode and custom callback executors. This avoids calls through function pointers when using only the thread or interrupt executors. Faster, and friendlier to `cargo-call-stack`. `embassy-executor` now has `arch-xxx` Cargo features to select the arch and to enable the builtin executors (thread and interrupt).
* Add DNS socket to embassy-netUlf Lilleengen2023-02-101-1/+1
|
* Add smoltcp dhcp socket configurationPaweł Jan Czochański2023-01-191-1/+1
|
* net: split driver trait to a separate crate.Dario Nieuwenhuis2022-12-261-0/+1
|
* net: remove unused pool-x featuresDario Nieuwenhuis2022-12-261-1/+1
|
* Switch to async-fn-in-traitDario Nieuwenhuis2022-11-251-1/+1
|
* Update Rust nightly.Dario Nieuwenhuis2022-10-261-1/+1
|
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-071-0/+1
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* net: feature-gate nightly-only async traits to allow building on stable.Dario Nieuwenhuis2022-08-301-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-0/+1
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-1/+2
|
* Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis2022-08-171-0/+1
|
* Add UDP example appArtur Kowalski2022-08-101-1/+1
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-1/+2
|
* Remove the authors field from Cargo.tomlsDario Nieuwenhuis2022-06-181-1/+0
| | | | | | | | | | | 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".
* Update to 2021 edition. (#820)Dario Nieuwenhuis2022-06-181-1/+1
|
* Make embassy-net nightly-only.Dario Nieuwenhuis2022-05-191-1/+1
| | | | | It's useless without async traits, so juggling the `nightly` feature around is not worth the pain.
* Update embedded-io to 0.3Dario Nieuwenhuis2022-05-191-1/+1
|
* Replace embassy::io with embedded_io.Dario Nieuwenhuis2022-05-071-1/+2
|
* net: auto-enable defmt in smoltcp using namespaced features.Dario Nieuwenhuis2022-04-131-1/+1
|
* embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.Dario Nieuwenhuis2022-02-121-1/+1
|
* Fix embassy-net documentation of running examples.Matous Hybl2021-12-061-2/+2
|
* net: don't depend directly on smoltcp outside embassy-netDario Nieuwenhuis2021-11-241-5/+0
|
* Further cargo muckings for smol/defmt.Bob McWhirter2021-11-151-1/+5
|
* Replace rustflags with build.rs extra-link-args.Dario Nieuwenhuis2021-11-071-1/+1
| | | | | | | | | | | | 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.
* Update clapDario Nieuwenhuis2021-10-181-1/+1
|
* Update lots of depsDario Nieuwenhuis2021-09-111-9/+9
|
* std: fold into embassy core, add non-hacky time driver.Dario Nieuwenhuis2021-08-251-2/+1
|
* UPdate smoltcpDario Nieuwenhuis2021-06-121-1/+1
|
* Update heaplessDario Nieuwenhuis2021-06-041-1/+1
|
* Move examples to a subdirectoryDario Nieuwenhuis2021-06-021-0/+21