Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0246 committed Jun 14, 2024
1 parent c2cda8d commit 5ec322a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-buffer"
version = "0.1.0"
version = "1.0.0"
authors = ["marc0246 <40955683+marc0246@users.noreply.github.com>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -9,7 +9,7 @@ documentation = "https://docs.rs/virtual-buffer"
readme = "README.md"
repository = "https://github.com/vulkano-rs/virtual-buffer"
license = "MIT OR Apache-2.0"
keywords = ["virtual", "memory", "buffer"]
keywords = ["virtual", "memory", "buffer", "lock-free", "concurrent", "vector"]
categories = ["concurrency", "data-structures", "memory-management", "no-std", "no-std::no-alloc"]

[target.'cfg(unix)'.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions src/vec.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! A concurrent, in-place growable vector.
//! A lock-free, concurrent, in-place growable vector.

use self::TryReserveErrorKind::{AllocError, CapacityOverflow};
use super::{align_up, page_size, Allocation, Error};
Expand All @@ -20,7 +20,7 @@ use core::{
},
};

/// A concurrent, in-place growable vector.
/// A lock-free, concurrent, in-place growable vector.
///
/// This type behaves identically to the standard library `Vec` except that it is guaranteed to
/// never reallocate, and as such can support concurrent reads while also supporting growth. All
Expand Down Expand Up @@ -644,7 +644,7 @@ impl<T: Ord> Ord for Vec<T> {
///
/// This struct is created by the [`into_iter`] method on [`Vec`].
///
/// [`into_iter`]: struct.Vec.html#method.into_iter-1
/// [`into_iter`]: Vec::into_iter
pub struct IntoIter<T> {
_allocation: Allocation,
start: *const T,
Expand Down

0 comments on commit 5ec322a

Please sign in to comment.