Skip to content

Commit 404c001

Browse files
committed
Whoops, hyphen
1 parent 73c5611 commit 404c001

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fork-map"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "MIT"
66
description = "A crate for running operations in a child process spawned by `fork()`"
77
keywords = ["parallel", "concurrency", "cursed"]
88
categories = ["concurrency"]
9-
homepage = "https://github.com/CouleeApps/fork_map"
10-
documentation = "https://docs.rs/fork_map"
11-
repository = "https://github.com/CouleeApps/fork_map"
9+
homepage = "https://github.com/CouleeApps/fork-map"
10+
documentation = "https://docs.rs/fork-map"
11+
repository = "https://github.com/CouleeApps/fork-map"
1212
readme = "README.md"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fork_map
1+
fork-map
22
----
33

44
A Rust library for running operations in a child process spawned by `fork()`. Embrace fearful concurrency: fearful that your worker task will mess up your memory space.

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use serde::{Deserialize, Serialize};
99
/// ```
1010
/// use fork_map::fork_map;
1111
///
12+
/// // Result type needs to implement serde::Serialize and serde::Deserialize
1213
/// pub fn do_with_fork(value: u64) -> u64 {
1314
/// // Spawn a child process with a copy-on-write copy of memory
1415
/// fork_map(|| {

0 commit comments

Comments
 (0)