-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
26 lines (23 loc) · 854 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "w5500"
version = "0.5.0"
authors = ["Michael Watzko <[email protected]>", "Jonah Dahlquist <[email protected]>", "Ryan Summers <[email protected]"]
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]
byteorder = { version = "1.3.4", default-features = false }
embedded-hal = "1"
embedded-nal = "0.8.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"] }