Skip to content

Commit

Permalink
Fix docs and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
djkoloski committed Mar 17, 2021
1 parent f3a4d8e commit 10fc400
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ptr_meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ptr_meta"
version = "0.1.1"
version = "0.1.2"
authors = ["David Koloski <[email protected]>"]
edition = "2018"
description = "A radioactive stabilization of the ptr_meta rfc"
Expand All @@ -14,4 +14,4 @@ readme = "crates-io.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ptr_meta_derive = { version = "=0.1.1", path = "../ptr_meta_derive" }
ptr_meta_derive = { version = "=0.1.2", path = "../ptr_meta_derive" }
2 changes: 1 addition & 1 deletion ptr_meta/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub use ptr_meta_derive::{pointee, Pointee};
/// A (possibly-wide) pointer can be put back together from its address and metadata
/// with [`from_raw_parts`] or [`from_raw_parts_mut`].
///
/// [`to_raw_parts`]: *const::to_raw_parts
/// [`to_raw_parts`]: PtrExt::to_raw_parts
pub trait Pointee {
/// The type for metadata in pointers and references to `Self`.
type Metadata: Copy + Send + Sync + Ord + hash::Hash + Unpin;
Expand Down
2 changes: 1 addition & 1 deletion ptr_meta_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ptr_meta_derive"
version = "0.1.1"
version = "0.1.2"
authors = ["David Koloski <[email protected]>"]
edition = "2018"
description = "Macros for ptr_meta"
Expand Down

0 comments on commit 10fc400

Please sign in to comment.