Skip to content

Commit 0327a4c

Browse files
committed
Updated dependencies
1 parent f27a653 commit 0327a4c

File tree

5 files changed

+20
-13
lines changed

5 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,48 @@
22

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

5+
## [1.0.10] - 2024-01-19
6+
7+
### Changed
8+
9+
- Updated dependencies.
10+
511
## [1.0.9] - 2023-08-09
612

713
### Changed
814

9-
- Updated dependencies: `smallvec`.
15+
- Updated dependencies.
1016

1117
## [1.0.8] - 2022-11-22
1218

1319
### Changed
1420

15-
- Updated dependencies: `smallvec`.
21+
- Updated dependencies.
1622

1723
## [1.0.7] - 2022-09-03
1824

1925
### Changed
2026

2127
- Updated Rust edition to 2021.
22-
- Updated dependencies: `smallvec`.
28+
- Updated dependencies.
2329

2430
## [1.0.6] - 2021-07-30
2531

2632
### Changed
2733

28-
- Updated dependencies: `assert_matches`.
34+
- Updated dependencies.
2935

3036
## [1.0.5] - 2021-02-03
3137

3238
### Changed
3339

34-
- Updated dependencies: `smallvec`.
40+
- Updated dependencies.
3541

3642
## [1.0.4] - 2020-11-16
3743

3844
### Changed
3945

40-
- Updated dependencies: `assert_matches`.
46+
- Updated dependencies.
4147
- Minor changes in unit tests to appease warnings.
4248

4349
## [1.0.3] - 2020-07-07
@@ -56,7 +62,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
5662

5763
### Changed
5864

59-
- Updated dependencies: `smallvec`.
65+
- Updated dependencies.
6066

6167
## [1.0.0] - 2020-01-10
6268

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.9" # Remember to update `html_root_url` and `dependency status` link.
3+
version = "1.0.10" # 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 <koutheir.attouchi@microdoc.com>"
@@ -32,4 +32,4 @@ assert_matches = { version = "1.5" }
3232
backtrace = { version = "0.3" }
3333
lazy_static = { version = "1.4" }
3434
libc = { version = "0.2" }
35-
smallvec = { version = "1.11" }
35+
smallvec = { version = "1.13" }

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2023 MicroDoc Software GmbH.
3+
Copyright (c) 2020-2024 MicroDoc Software GmbH.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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.8/status.svg)](https://deps.rs/crate/process_vm_io/1.0.9)
4+
[![dependency status](https://deps.rs/crate/process_vm_io/1.0.10/status.svg)](https://deps.rs/crate/process_vm_io/1.0.10)
55

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

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2023 MicroDoc Software GmbH.
1+
// Copyright (c) 2020-2024 MicroDoc Software GmbH.
22
// See the "LICENSE.txt" file at the top-level directory of this distribution.
33
//
44
// Licensed under the MIT license. This file may not be copied, modified,
@@ -7,9 +7,10 @@
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.9")]
10+
#![doc(html_root_url = "https://docs.rs/process_vm_io/1.0.10")]
1111

1212
#![warn(
13+
unsafe_op_in_unsafe_fn,
1314
missing_docs,
1415
keyword_idents,
1516
macro_use_extern_crate,

0 commit comments

Comments
 (0)