Skip to content

Commit 3a9bc8e

Browse files
committed
Add doc to build
1 parent b153119 commit 3a9bc8e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,9 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
1920
- name: Build
2021
run: cargo build --verbose
22+
23+
- name: doc
24+
run: cargo doc --verbose

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "mem-rs"
19-
version = "0.2.0"
19+
version = "0.2.1"
2020
edition = "2021"
2121
readme = "README.md"
2222
homepage = "https://github.com/FrankvdStam/mem-rs"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ pub mod prelude
2525
{
2626
pub use crate::read_write::*;
2727
pub use crate::process::*;
28-
pub use crate::process_module::*;
28+
pub use crate::process_module::*;
2929
pub use crate::pointer::*;
3030
}

0 commit comments

Comments
 (0)