Adapt UDP to W5100
Some checks failed
Rust / Check (push) Has been cancelled
Rust / Test Suite (push) Has been cancelled
Rust / Rustfmt (push) Has been cancelled
Rust / Clippy (push) Has been cancelled

This commit is contained in:
Pascal Engélibert 2025-11-11 14:40:25 +01:00
commit 62e56052cf
16 changed files with 918 additions and 702 deletions

View file

@ -1,17 +1,21 @@
[package]
name = "w5500"
version = "0.6.0"
authors = ["Michael Watzko <michael@watzko.de>", "Jonah Dahlquist <hi@jonah.name>", "Ryan Summers <ryan.summers@vertigo-designs.com"]
repository = "https://github.com/kellerkindt/w5500.git"
description = "W5500 IoT Controller implementation."
keywords = ["embedded", "w5500", "iot", "arm", "embedded-hal-driver"]
name = "w5100"
version = "0.1.0"
authors = [
"Michael Watzko <michael@watzko.de>",
"Jonah Dahlquist <hi@jonah.name>",
"Ryan Summers <ryan.summers@vertigo-designs.com",
"Pascal Engélibert <tuxmain@zettascript.org>"
]
repository = "https://git.zoai.re/tuxmain/w5100-rs"
description = "W5100 Ethernet driver"
keywords = ["embedded", "w5100", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std", "network-programming"]
license = "MIT OR Apache-2.0"
license = "AGPL-3.0-only"
readme = "README.md"
edition = "2018"
[features]
no-chip-version-assertion = []
[dependencies]
embedded-hal = "1"