Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-doc
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
/Cargo.lock
.vscode/
220 changes: 220 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "ixgbe-driver"
version = "0.1.1-preview.1"
version = "0.1.1"
edition = "2021"
description = "Intel 82599+ 10Gb NIC Driver."
authors = ["KuangjuX <kuangjux@outlook.com>"]
repository = "https://github.com/drivercraft/ixgbe-driver/"
homepage = "https://github.com/drivercraft/ixgbe-driver/"
documentation = "https://drivercraft.github.io/ixgbe-driver/"
documentation = "https://docs.rs/ixgbe-driver"
license = "Apache-2.0"
readme = "README.md"
keywords = ["driver", "network", "nic", "ixgbe"]
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Ixgbe-driver

[![Crates.io](https://img.shields.io/crates/v/ixgbe-driver)](https://crates.io/crates/ixgbe-driver)
[![Docs.rs](https://docs.rs/ixgbe-driver/badge.svg)](https://docs.rs/ixgbe-driver)
[![CI](https://github.com/drivercraft/ixgbe-driver/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/drivercraft/ixgbe-driver/actions/workflows/deploy.yml)

## Introduction

ixgbe-driver is a kernel-level Intel 10Gb network card driver implemented in the Rust programming language. It is developed based on [ixy.rs](https://github.com/ixy-languages/ixy.rs).

The project is currently under development, and this driver is planned to be used in Arceos, providing a non-blocking interface and support for async calls.
The project is currently under development, and this driver is planned to be used in Arceos, providing a non-blocking interface and support for async calls.
Loading