mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
make crc32 function public in ogg_pager
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
189c28019c
commit
d702eaba8c
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ogg_pager"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ use std::io::{Read, Seek, SeekFrom};
|
|||
use byteorder::{LittleEndian, ReadBytesExt};
|
||||
|
||||
pub use error::{PageError, Result};
|
||||
pub use crc::crc32;
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct Page {
|
||||
|
|
Loading…
Reference in a new issue