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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Project metadata
name = "rbpf"
version = "0.4.0"
version = "0.4.1"
authors = ["Quentin Monnet <qmo@qmon.net>"]

# Additional metadata for packaging
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ file:

```toml
[dependencies]
rbpf = "0.4.0"
rbpf = "0.4.1"
```

You can also use the development version from this GitHub repository. This
Expand Down Expand Up @@ -388,7 +388,7 @@ to your `Cargo.toml` file.

```toml
[dependencies]
rbpf = "0.4.0"
rbpf = "0.4.1"
elf = "0.8.0"
```

Expand Down Expand Up @@ -581,7 +581,7 @@ enabled-by-default features.

```toml
[dependencies]
rbpf = { version = "0.4.0", default-features = false }
rbpf = { version = "0.4.1", default-features = false }
```

Note that when using this crate in `no_std` environments, the `jit` module
Expand Down
4 changes: 2 additions & 2 deletions tests/ubpf_jit_x86_64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ fn test_jit_div_reg_with_nonzero_imm() {
// exit
0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];

let mut vm = rbpf::EbpfVmNoData::new(Some(prog)).unwrap();
#[cfg(not(feature = "std"))]
let mut exec_mem = alloc_exec_memory();
Expand Down Expand Up @@ -923,7 +923,7 @@ fn test_jit_mod_reg_with_nonzero_imm() {
// exit
0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];

let mut vm = rbpf::EbpfVmNoData::new(Some(prog)).unwrap();
#[cfg(not(feature = "std"))]
let mut exec_mem = alloc_exec_memory();
Expand Down
Loading