Skip to content

Commit

Permalink
release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ickk committed Jul 4, 2024
1 parent 8e15b05 commit 24d9942
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "sinter"
version = "0.0.0"
version = "0.1.0"
edition = "2021"
authors = ["ickk <crates@ickk.io>"]
license = "MIT OR Apache-2.0 OR Zlib"
readme = "README.md"
include = ["src/", "LICENSE-APACHE", "LICENSE-MIT", "LICENSE-ZLIB"]
description = "Global thread-safe string interner "
description = "Global thread-safe string interner"
documentation = "https://docs.rs/sinter"
repository = "https://github.com/ickk/sinter/"
keywords = ["interner", "string"]
Expand Down
2 changes: 1 addition & 1 deletion src/istr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl AsRef<CStr> for IStr {
impl Borrow<str> for IStr {
#[inline]
fn borrow(&self) -> &'static str {
&self.0
self.0
}
}

Expand Down

0 comments on commit 24d9942

Please sign in to comment.