8 releases (breaking)

0.8.0 Nov 10, 2023
0.7.0 Jun 22, 2023
0.6.0 May 25, 2021
0.5.0 May 20, 2021
0.1.0 Aug 26, 2020

#92 in Embedded development

Download history 1448/week @ 2023-12-11 1179/week @ 2023-12-18 426/week @ 2023-12-25 673/week @ 2024-01-01 1310/week @ 2024-01-08 1305/week @ 2024-01-15 1086/week @ 2024-01-22 1130/week @ 2024-01-29 1169/week @ 2024-02-05 1562/week @ 2024-02-12 1900/week @ 2024-02-19 1690/week @ 2024-02-26 2594/week @ 2024-03-04 2530/week @ 2024-03-11 1716/week @ 2024-03-18 2075/week @ 2024-03-25

9,024 downloads per month
Used in 50 crates (24 directly)

MIT/Apache

22KB
254 lines

embedded-nal

An Embedded Network Abstraction Layer

This crate defines a simple set of traits that can be implemented by almost any TCP/IP stack. This might be an on-chip stack like smoltcp, or it could be an off-chip TCP/IP stack on an AT modem.

API reference

How-to: add a new trait

This is the suggested approach to adding a new trait to embedded-nal

Research / Discussion

Ideally, before proposing a new trait, or set of traits, you should check for an existing issue suggesting the need for the trait, as well as any related works / use cases / requirements that are useful to consider in the design of the trait.

These issues will be labeled as discussion in the issue tracker.

Implementation / Demonstration

Proposed traits should then be implemented and demonstrated, either by forking embedded-nal or by creating a new crate with the intent of integrating this into embedded-nal once the traits have stabilized. You may find cargo workspaces and patch useful for the forking approach.

Proposing a trait

Once the trait has been demonstrated a PR should be opened to merge the new trait(s) into embedded-nal. This should include a link to the previous discussion issue.

If there is determined to be more than one alternative then there should be further discussion to try to single out the best option. Once there is consensus this will be merged into the embedded-nal repository.

These issues / PRs will be labeled as proposals in the issue tracker.

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.60.0 and up. It might compile with older versions but that may change in any new patch release.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~180KB