Skip to content

Commit

Permalink
Impl write::Decoder/Encoder (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger authored Sep 23, 2024
1 parent 97fd2e7 commit 38444ab
Show file tree
Hide file tree
Showing 6 changed files with 799 additions and 427 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "isal-rs"
version = "0.2.0+496255c"
version = "0.3.0+496255c"
edition = "2021"
description = "isa-l Rust bindings"
license = "MIT"
readme = "README.md"

[lib]
name = "isal"
Expand All @@ -13,7 +16,7 @@ shared = ["isal-sys/shared"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
isal-sys = { path = "isal-sys"}
isal-sys = { path = "isal-sys", version = "0.3.0+496255c" }

[dev-dependencies]
criterion = "0.3"
Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
## Rust sys and wrapper crates for [isa-l](https://github.com/intel/isa-l)
# isal-rs

[![CI](https://github.com/milesgranger/isal-rs/actions/workflows/ci.yml/badge.svg)](https://github.com/milesgranger/isal-rs/actions/workflows/ci.yml)
[![CI](https://github.com/milesgranger/isal-rs/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/milesgranger/isal-rs/actions/workflows/CI.yml)
[![Latest version](https://img.shields.io/crates/v/isal-rs.svg)](https://crates.io/crates/isal-rs)
[![Documentation](https://docs.rs/isal-rs/badge.svg)](https://docs.rs/isal-rs)
![License](https://img.shields.io/crates/l/isal-rs.svg)

---

### [isal-sys](./isal-sys/)
- _sys crate, raw Rust bindings to the isa-l library. [only bindings to lib_gzip]_
### [isal-rs](./isal-rs/)
- _high level wrapper, including gzip/deflate API. [_WIP_]_
Rust bindings for [isa-l](https://github.com/intel/isa-l)

---

Expand Down
4 changes: 3 additions & 1 deletion isal-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "isal-sys"
version = "0.2.0+496255c"
version = "0.3.0+496255c"
edition = "2021"
description = "isa-l sys crate"
license = "MIT"

[features]
default = ["static"]
Expand Down
Loading

0 comments on commit 38444ab

Please sign in to comment.