It exports the StringCompressor
struct that can be used to create minimally compact, non-colliding,
URL-safe, base-64 aliases for a set of strings. It's useful for building minifying tools, among other things.
- When you need to hash strings and need your hashed values to be as small as possible.
- When you need hashed values to be safe for use in URLs and file names.
- When you need to un-hash previously hashed strings.
- When you need to uniquely hash more than 2^64 strings using a single instance. In the future,
StringCompressor
will support higher concurrently unique hashes. - When you need your hasher not to affect memory usage. In the future,
StringCompressor
will support a future flag that allows zero scaling in memory, at the expense of disallowing un-hashing. - When hashed values need to be transmitted and un-hashed by another program.
- Lowercase and uppercase alphabetical ASCII characters:
a
throughz
andA
throughZ
- Numerical ASCII characters:
0
through9
- Dashes and underscores:
-
and_
- Hashed values are un-padded to minimize size.
Add this crate as a dependency in you're Cargo.toml
:
[dependencies]
# Install from Crates.io
string_compressor = { version = "1.0.1" }
# OR install from GitHub Release
string_compressor = { git = "https://github.com/craigfay/string_compressor", tag = "v1.0.1" }
# OR install from GitHub Branch
string_compressor = { git = "https://github.com/craigfay/string_compressor", branch = "main" }