zlib utilities for Gleam
Go to file
LilyRose2798 9454aaa84a Fix erlang module name 2024-06-04 18:37:28 +10:00
.github/workflows Initial commit 2024-06-04 18:35:24 +10:00
src Fix erlang module name 2024-06-04 18:37:28 +10:00
test Initial commit 2024-06-04 18:35:24 +10:00
.gitignore Initial commit 2024-06-04 18:35:24 +10:00
README.md Initial commit 2024-06-04 18:35:24 +10:00
gleam.toml Initial commit 2024-06-04 18:35:24 +10:00
manifest.toml Initial commit 2024-06-04 18:35:24 +10:00

README.md

gzlib

Package Version Hex Docs

gleam add gzlib
import gzlib

pub fn main() {
  let data = <<1, 2, 3, 4, 5>>
  let compressed_data = gzlib.compress(data)
  let more_compressed_data = gzlib.compress_with_level(data, gzlib.max_compression)
  let crc = gzlib.crc32(data)
}

Further documentation can be found at https://hexdocs.pm/gzlib.

Development

gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell