compressed_string 1.0.0

String stored in memory in a compressed form, using the DEFLATE algorithm
Documentation
[package]
name = "compressed_string"
version = "1.0.0"
authors = ["Kornel <kornel@geekhood.net>"]
edition = "2018"
description = "String stored in memory in a compressed form, using the DEFLATE algorithm"
keywords = ["deflate", "ram", "string", "gzip"]
categories = ["encoding", "compression"]
homepage = "https://crates.rs/crates/compressed_string"
readme = "README.md"
license = "CC0-1.0"

[dependencies]
flate2 = "1.0.6"
serde = { optional = true, version = "1.0.83" }
serde_derive = { optional = true, version = "1.0.83" }

[features]
with_serde = ["serde", "serde_derive"]