Skip to content

Commit

Permalink
Merge pull request #21 from artichoke/release/cargo-crate-metadata
Browse files Browse the repository at this point in the history
Add documentation and homepage links to Cargo.toml
  • Loading branch information
lopopolo authored Dec 12, 2021
2 parents 2accfc4 + be8e71f commit deab016
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[package]
name = "raw-parts"
version = "1.1.0"
version = "1.1.1"
authors = ["Ryan Lopopolo <[email protected]>"]
license = "MIT"
edition = "2021"
rust-version = "1.56.0"
readme = "README.md"
repository = "https://github.com/artichoke/raw-parts"
documentation = "https://docs.rs/raw-parts"
homepage = "https://github.com/artichoke/raw-parts"
description = """
Ergonomic wrapper around `Vec::from_raw_parts` and `Vec::into_raw_parts`.
"""
repository = "https://github.com/artichoke/raw-parts"
readme = "README.md"
license = "MIT"
keywords = ["ffi", "no_std", "unsafe", "vec", "vector"]
categories = ["no-std", "rust-patterns"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
//! raw-parts is `no_std` compatible with a required dependency on [`alloc`].
#![no_std]
#![doc(html_root_url = "https://docs.rs/raw-parts/1.1.0")]
#![doc(html_root_url = "https://docs.rs/raw-parts/1.1.1")]

// Ensure code blocks in `README.md` compile
#[cfg(doctest)]
Expand Down

0 comments on commit deab016

Please sign in to comment.