29 lines
780 B
TOML
29 lines
780 B
TOML
[package]
|
|
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 = "AGPL-3.0-only"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
|
|
[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"] }
|