├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── block.rs ├── error.rs ├── lib.rs └── tag.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /doc 2 | /target 3 | /Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/README.md -------------------------------------------------------------------------------- /src/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/src/block.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameshurst/rust-metaflac/HEAD/src/tag.rs --------------------------------------------------------------------------------