Skip to content

Commit df5dec6

Browse files
committed
Release v0.1.1 for crates.io
1 parent a49e0b4 commit df5dec6

5 files changed

Lines changed: 228 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
url: ${{ steps.deployment.outputs.page_url }}
5959
runs-on: ubuntu-latest
6060
needs: build-doc
61+
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
6162
steps:
6263
- name: Deploy to GitHub Pages
6364
id: deployment

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/target
2-
/Cargo.lock
32
.vscode/

Cargo.lock

Lines changed: 220 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "ixgbe-driver"
3-
version = "0.1.1-preview.1"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Intel 82599+ 10Gb NIC Driver."
66
authors = ["KuangjuX <kuangjux@outlook.com>"]
77
repository = "https://github.com/drivercraft/ixgbe-driver/"
88
homepage = "https://github.com/drivercraft/ixgbe-driver/"
9-
documentation = "https://drivercraft.github.io/ixgbe-driver/"
9+
documentation = "https://docs.rs/ixgbe-driver"
1010
license = "Apache-2.0"
1111
readme = "README.md"
1212
keywords = ["driver", "network", "nic", "ixgbe"]

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Ixgbe-driver
22

3+
[![Crates.io](https://img.shields.io/crates/v/ixgbe-driver)](https://crates.io/crates/ixgbe-driver)
4+
[![Docs.rs](https://docs.rs/ixgbe-driver/badge.svg)](https://docs.rs/ixgbe-driver)
5+
[![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)
6+
37
## Introduction
48

59
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).
610

7-
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.
11+
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.

0 commit comments

Comments
 (0)