File tree Expand file tree Collapse file tree 5 files changed +20
-13
lines changed Expand file tree Collapse file tree 5 files changed +20
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
4
4
5
+ ## [ 1.0.10] - 2024-01-19
6
+
7
+ ### Changed
8
+
9
+ - Updated dependencies.
10
+
5
11
## [ 1.0.9] - 2023-08-09
6
12
7
13
### Changed
8
14
9
- - Updated dependencies: ` smallvec ` .
15
+ - Updated dependencies.
10
16
11
17
## [ 1.0.8] - 2022-11-22
12
18
13
19
### Changed
14
20
15
- - Updated dependencies: ` smallvec ` .
21
+ - Updated dependencies.
16
22
17
23
## [ 1.0.7] - 2022-09-03
18
24
19
25
### Changed
20
26
21
27
- Updated Rust edition to 2021.
22
- - Updated dependencies: ` smallvec ` .
28
+ - Updated dependencies.
23
29
24
30
## [ 1.0.6] - 2021-07-30
25
31
26
32
### Changed
27
33
28
- - Updated dependencies: ` assert_matches ` .
34
+ - Updated dependencies.
29
35
30
36
## [ 1.0.5] - 2021-02-03
31
37
32
38
### Changed
33
39
34
- - Updated dependencies: ` smallvec ` .
40
+ - Updated dependencies.
35
41
36
42
## [ 1.0.4] - 2020-11-16
37
43
38
44
### Changed
39
45
40
- - Updated dependencies: ` assert_matches ` .
46
+ - Updated dependencies.
41
47
- Minor changes in unit tests to appease warnings.
42
48
43
49
## [ 1.0.3] - 2020-07-07
@@ -56,7 +62,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
56
62
57
63
### Changed
58
64
59
- - Updated dependencies: ` smallvec ` .
65
+ - Updated dependencies.
60
66
61
67
## [ 1.0.0] - 2020-01-10
62
68
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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.
4
4
description = " I/O access to virtual memory contents of processes"
5
5
authors = [
6
6
" Koutheir Attouchi <koutheir.attouchi@microdoc.com>"
@@ -32,4 +32,4 @@ assert_matches = { version = "1.5" }
32
32
backtrace = { version = " 0.3" }
33
33
lazy_static = { version = " 1.4" }
34
34
libc = { version = " 0.2" }
35
- smallvec = { version = " 1.11 " }
35
+ smallvec = { version = " 1.13 " }
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2020-2023 MicroDoc Software GmbH.
3
+ Copyright (c) 2020-2024 MicroDoc Software GmbH.
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
[ ![ crates.io] ( https://img.shields.io/crates/v/process_vm_io.svg )] ( https://crates.io/crates/process_vm_io )
2
2
[ ![ docs.rs] ( https://docs.rs/process_vm_io/badge.svg )] ( https://docs.rs/process_vm_io )
3
3
[ ![ 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 )
5
5
6
6
# I/O access to virtual memory contents of processes
7
7
Original file line number Diff line number Diff line change 1
- // Copyright (c) 2020-2023 MicroDoc Software GmbH.
1
+ // Copyright (c) 2020-2024 MicroDoc Software GmbH.
2
2
// See the "LICENSE.txt" file at the top-level directory of this distribution.
3
3
//
4
4
// Licensed under the MIT license. This file may not be copied, modified,
7
7
// TODO: https://rust-lang.github.io/api-guidelines/checklist.html
8
8
9
9
#![ 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 " ) ]
11
11
12
12
#![ warn(
13
+ unsafe_op_in_unsafe_fn,
13
14
missing_docs,
14
15
keyword_idents,
15
16
macro_use_extern_crate,
You can’t perform that action at this time.
0 commit comments