* Adding TCP-based NAL implementation * Updating NAL dependency * Updating connect to handle network errors * Adding support for getting IP and MAC, allowing transparent access to the W5500 in the interface. * Fixing TCP connect when not in INIT * Adding wait after reset * Reverting changes * More delta reductions * Fixing format * Updating changelog * Fixing docs * Updating NAL version * Adding debug derive * fixing TCP write * Updating RX receive size to allow less than 8 bytes * Fixing clippy lints
22 lines
734 B
TOML
22 lines
734 B
TOML
[package]
|
|
name = "w5500"
|
|
version = "0.3.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"]
|
|
categories = ["embedded", "hardware-support", "no-std", "network-programming"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1.3.4", default-features = false }
|
|
embedded-hal = "0.2.4"
|
|
embedded-nal = "0.6.0"
|
|
bit_field = "0.10.1"
|
|
derive-try-from-primitive = "1"
|
|
nb = "1.0.0"
|
|
|
|
[features]
|
|
no-chip-version-assertion = []
|