Compare commits

...

3 Commits

9 changed files with 865 additions and 163 deletions

View File

@ -1,48 +0,0 @@
name: Docs
on:
push:
branches: [master]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: deploy
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Configure cache
uses: Swatinem/rust-cache@v2
- name: Setup pages
id: pages
uses: actions/configure-pages@v4
- name: Clean docs folder
run: cargo clean --doc
- name: Build docs
run: cargo doc --no-deps
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=occule/index.html">' > target/doc/index.html
- name: Remove lock file
run: rm target/doc/.lock
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: target/doc
deploy:
name: Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

View File

@ -1,22 +0,0 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

946
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "occule"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
[features]
@ -13,7 +13,7 @@ wav = ["dep:hound"]
[dependencies]
base64 = "0.22"
thiserror = "1.0"
thiserror = "2.0"
itertools = "0.13"
num-traits = "0.2"

View File

@ -3,6 +3,7 @@ use crate::{Codec, Error};
/// Reverses payload binary data and writes it ass-first past the end of the original data. A
/// length marker is also prepended to the payload *before reversing* so the decoder knows how long
/// the payload is.
#[derive(Clone, Debug)]
pub struct BinaryReverseAppendixCodec;
impl Codec for BinaryReverseAppendixCodec {

View File

@ -8,7 +8,7 @@ use crate::{Codec, Error};
/// Codec for embedding data in a GLTF file "extras" entry. It uses the extras entry in the first
/// scene in the file and stores the data as base64.
#[derive(Default)]
#[derive(Clone, Debug, Default)]
pub struct ExtrasEntryCodec;
impl Codec for ExtrasEntryCodec {

View File

@ -6,7 +6,7 @@ use crate::{codec::Codec, Error};
/// Codec for storing payload data in JPEG comment (COM) segments. Can store an arbitrary amount of
/// data, as long as the number of comment segments does not exceed u64::MAX.
#[derive(Debug, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct JpegSegmentCodec {
/// Index of segment to insert comments at.
pub start_index: usize,

View File

@ -8,7 +8,7 @@ use crate::{codec::Codec, Error};
/// in an image. This implementation reduces the colors in the carrier (irreversibly) in order to
/// allow a byte of data to fit in each pixel of the image. 3 bits of data are encoded per pixel,
/// and the 9th bit is used to signal the end of data.
#[derive(Debug, Default)]
#[derive(Clone, Debug, Default)]
pub struct LsbCodec;
impl Codec for LsbCodec {

View File

@ -8,6 +8,7 @@ use num_traits::{FromBytes, ToBytes};
/// A Least-Significant Bit (LSB) Codec for WAV files. Stores 1 bit of payload data in each sample
/// of a WAV file. Supported sample formats are 8, 16, and 32-bit PCM, and 32-bit float.
#[derive(Clone, Debug)]
pub struct LsbCodec;
impl Codec for LsbCodec {