25 lines
794 B
TOML
25 lines
794 B
TOML
[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"]
|
|
categories = ["embedded", "hardware-support", "no-std", "network-programming"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
no-chip-version-assertion = []
|
|
|
|
[dependencies]
|
|
embedded-hal = "1"
|
|
embedded-nal = "0.9.0"
|
|
bit_field = "0.10"
|
|
derive-try-from-primitive = "1"
|
|
nb = "1.0.0"
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
embedded-hal-mock = { version = "0.11", features = ["eh1"] }
|