Skip to content

v1.5.0

Compare
Choose a tag to compare
@lopopolo lopopolo released this 31 Mar 06:44
ba69eaa

Release 1.5.0 of intaglio.

intaglio is available on crates.io.

Improvements

This release includes several new interner implementations. intaglio now has an interner for all string types in the Rust standard library.

  • Add a CStr/CString interner. #118
  • Add a Path/PathBuf string interner. #137
  • Add a OsStr/OsString string interner. #138

These new interners join the existing str/String and [u8]/Vec<u8> interners.

This release includes some code refactorings, packaging changes, and performance improvements:

  • Update version-sync to 0.9.3 and trim some deps from Cargo.lock. #112
  • Update Cargo.toml manifest version and docs.rs metadata. #124
  • Use debug_assert_eq! instead of debug_assert!(... == ...). #129
  • Use include_str! in attribute position for README doctests. #130
  • Simplify and shrink AllSymbols iterators. #139