Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Impl write::Decoder/Encoder #14

Merged
merged 7 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading