Skip to content

Commit

Permalink
Rename to arc-atomic
Browse files Browse the repository at this point in the history
  • Loading branch information
colinjfw committed Jan 7, 2024
1 parent e00580c commit 1912921
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "atomic-arc"
name = "arc-atomic"
version = "0.1.0"
edition = "2021"

description = "Provides an atomic pointer to an `Arc`"
readme = "readme.md"
documentation = "https://docs.rs/atomic-arc"
repository = "https://github.com/colinjfw/atomic-arc"
documentation = "https://docs.rs/arc-atomic"
repository = "https://github.com/colinjfw/arc-atomic"
license = "MIT"
authors = ["Colin Walker <me@colinjfw.com>"]
keywords = ["arc"]
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ threads.
```
# use std::sync::Arc;
# use std::thread;
# use atomic_arc::AtomicArc;
# use arc_atomic::AtomicArc;
let arc = Arc::new(AtomicArc::new(Arc::new(1)));
let handle = arc.clone();
thread::spawn(move || {
Expand Down

0 comments on commit 1912921

Please sign in to comment.