Skip to content

Commit 80c0289

Browse files
committed
Migrated from 2021 edition to 2024.
1 parent 5f504ae commit 80c0289

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [1.0.13] - 2025-02-21
6+
7+
### Changed
8+
9+
- Migrated from 2021 edition to 2024.
10+
511
## [1.0.12] - 2025-01-31
612

713
### Removed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "process_vm_io"
3-
version = "1.0.12" # Remember to update `html_root_url` and `dependency status` link.
3+
version = "1.0.13" # Remember to update `html_root_url` and `dependency status` link.
44
description = "I/O access to virtual memory contents of processes"
55
authors = [
66
"Koutheir Attouchi <[email protected]>"
@@ -10,7 +10,7 @@ repository = "https://github.com/mdcssw/process_vm_io"
1010
documentation = "https://docs.rs/process_vm_io"
1111
readme = "README.md"
1212
license = "MIT"
13-
edition = "2021"
13+
edition = "2024"
1414
categories = [
1515
"api-bindings",
1616
"development-tools",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![crates.io](https://img.shields.io/crates/v/process_vm_io.svg)](https://crates.io/crates/process_vm_io)
22
[![docs.rs](https://docs.rs/process_vm_io/badge.svg)](https://docs.rs/process_vm_io)
33
[![license](https://img.shields.io/github/license/mdcssw/process_vm_io?color=black)](https://raw.githubusercontent.com/mdcssw/process_vm_io/master/LICENSE.txt)
4-
[![dependency status](https://deps.rs/crate/process_vm_io/1.0.10/status.svg)](https://deps.rs/crate/process_vm_io/1.0.12)
4+
[![dependency status](https://deps.rs/crate/process_vm_io/1.0.13/status.svg)](https://deps.rs/crate/process_vm_io/1.0.13)
55

66
# I/O access to virtual memory contents of processes
77

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// TODO: https://rust-lang.github.io/api-guidelines/checklist.html
88

99
#![doc = include_str!("../README.md")]
10-
#![doc(html_root_url = "https://docs.rs/process_vm_io/1.0.12")]
10+
#![doc(html_root_url = "https://docs.rs/process_vm_io/1.0.13")]
1111
#![warn(
1212
unsafe_op_in_unsafe_fn,
1313
missing_docs,

0 commit comments

Comments
 (0)