We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b153119 commit 3a9bc8eCopy full SHA for 3a9bc8e
.github/workflows/build.yml
@@ -16,5 +16,9 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v4
19
+
20
- name: Build
21
run: cargo build --verbose
22
23
+ - name: doc
24
+ run: cargo doc --verbose
Cargo.toml
@@ -16,7 +16,7 @@
[package]
name = "mem-rs"
-version = "0.2.0"
+version = "0.2.1"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/FrankvdStam/mem-rs"
src/lib.rs
@@ -25,6 +25,6 @@ pub mod prelude
25
{
26
pub use crate::read_write::*;
27
pub use crate::process::*;
28
- pub use crate::process_module::*;
+ pub use crate::process_module::*;
29
pub use crate::pointer::*;
30
}
0 commit comments