[package]
edition = "2021"
name = "ixgbe-driver"
version = "0.1.1"
authors = ["KuangjuX <kuangjux@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Intel 82599+ 10Gb NIC Driver."
homepage = "https://github.com/drivercraft/ixgbe-driver/"
documentation = "https://docs.rs/ixgbe-driver"
readme = "README.md"
keywords = [
"driver",
"network",
"nic",
"ixgbe",
]
categories = [
"no-std",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/drivercraft/ixgbe-driver/"
[features]
default = []
irq = []
[lib]
name = "ixgbe_driver"
path = "src/lib.rs"
[[test]]
name = "descriptor_test"
path = "tests/descriptor_test.rs"
[[test]]
name = "hal_test"
path = "tests/hal_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "memory_test"
path = "tests/memory_test.rs"
[dependencies.bit_field]
version = "0.10.2"
[dependencies.core_detect]
version = "1.0.0"
[dependencies.log]
version = "0.4"
[dependencies.smoltcp]
version = "0.12"
features = [
"alloc",
"log",
"medium-ethernet",
"proto-ipv4",
"socket-raw",
"socket-icmp",
"socket-udp",
"socket-tcp",
"socket-dns",
]
default-features = false
[dependencies.volatile]
version = "0.3"