Skip to content

Commit

Permalink
bump lib versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DouglasGray committed May 25, 2021
1 parent 14e9f8e commit 44d72eb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [0.2.2] - 2020-05-25

## Changed
- bumped lib versions, libbpf-sys specifically

## [0.2.1] - 2020-01-29

### Changed
Expand Down
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xsk-rs"
version = "0.2.1"
version = "0.2.2"
authors = ["Douglas Gray <dbgray01@gmail.com>"]
edition = "2018"
description = "Rust bindings for Linux AF_XDP sockets"
Expand All @@ -10,23 +10,23 @@ readme = "README.md"
keywords = ["AF_XDP", "XSK", "eBPF", "XDP"]

[dependencies]
bitflags = "1.2.1"
libbpf-sys = "0.3.0-1"
bitflags = "1.2"
libbpf-sys = "0.3.0-2"
libc = "0.2"
log = "0.4"

[dev-dependencies]
anyhow = "1.0.32"
clap = "2.33.3"
crossbeam-channel = "0.5.0"
ctrlc = "3.1.7"
etherparse = "0.9.0"
futures = "0.3.5"
rand = "0.7.3"
rtnetlink = "0.3.0"
env_logger = "0.8.2"
anyhow = "1.0"
clap = "2.33"
crossbeam-channel = "0.5"
ctrlc = "3.1"
etherparse = "0.9"
futures = "0.3"
rand = "0.8.3"
rtnetlink = "0.7"
env_logger = "0.8"

[dev-dependencies.tokio]
version = "0.2.22"
version = "1.6"
default-features = false
features = ["rt-core", "macros", "test-util", "blocking", "sync", "signal"]
features = ["rt-multi-thread", "macros", "sync", "signal"]
2 changes: 1 addition & 1 deletion examples/dev2_to_dev1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ fn main() {

// Create the veth pair
let veth_handle = thread::spawn(move || {
let mut runtime = Runtime::new().unwrap();
let runtime = Runtime::new().unwrap();

runtime.block_on(setup::run_veth_link(
&veth_config_clone,
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_xdp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ fn main() {
let ctrl_c_events = setup::ctrl_channel().unwrap();

let veth_handle = thread::spawn(move || {
let mut runtime = Runtime::new().unwrap();
let runtime = Runtime::new().unwrap();

runtime.block_on(setup::run_veth_link(
&veth_config_clone,
Expand Down

0 comments on commit 44d72eb

Please sign in to comment.