https://github.com/vnphanquang/ipp
Ipp Encoder & Printer
https://github.com/vnphanquang/ipp
encoder ipp printing rust
Last synced: 10 months ago
JSON representation
Ipp Encoder & Printer
- Host: GitHub
- URL: https://github.com/vnphanquang/ipp
- Owner: vnphanquang
- License: mit
- Created: 2021-12-16T03:49:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T12:54:57.000Z (over 4 years ago)
- Last Synced: 2025-07-10T06:58:07.510Z (11 months ago)
- Topics: encoder, ipp, printing, rust
- Language: Rust
- Homepage:
- Size: 716 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ipp_encoder
[![MIT][license.badge]][license] [![docs.rs][docs.rs.badge]][docs.rs] [![crates.io][crates.io.badge]][crates.io]
![actions.test.badge] ![actions.publish.badge]
Internet Printing Protocol (IPP) encoder and decoder implementation in Rust, following [RFC 8010][rfc-8010] and [RFC 8011][rfc-8011]. Inspired by [watson's ipp-encoder implementation in javascript][waston/ipp-encoder]
Note: the `ipp-encoder` crate only implements a core encoder/decoder. To see example usage, look into [printer folder](./printer/src/main.rs).
```toml
[dependencies]
ipp_encoder = { version = "1.0" }
```
[Documentation][docs.rs]
## Todo
- [ ] cargo feature flags:
- [ ] `std`: implement `IppEncode` trait for primitives
- [ ] `serde`: implement `serde` traits for serialization & deserialization
- [ ] unit testing
- [ ] printer wrapper package
[rfc-8010]: https://datatracker.ietf.org/doc/html/rfc8010
[rfc-8011]: https://datatracker.ietf.org/doc/html/rfc8011
[waston/ipp-encoder]: https://github.com/watson/ipp-encoder
[crates.io.badge]: https://img.shields.io/crates/v/ipp_encoder.svg
[crates.io]: https://crates.io/crates/ipp_encoder
[license.badge]: https://img.shields.io/badge/license-MIT-blue.svg
[license]: ./LICENSE
[docs.rs.badge]: https://docs.rs/ipp_encoder/badge.svg
[docs.rs]: https://docs.rs/ipp_encoder
[actions.test.badge]: https://github.com/vnphanquang/ipp/actions/workflows/test.yaml/badge.svg
[actions.publish.badge]: https://github.com/vnphanquang/ipp/actions/workflows/publish.yaml/badge.svg