Skip to content

Commit

Permalink
Auto merge of #244 - troy/aac-docs, r=lennartkloock
Browse files Browse the repository at this point in the history
adds a readme and licenese for the aac crate
setup the create to be ready to publish

Requested-by: TroyKomodo <[email protected]>
Reviewed-by: lennartkloock <[email protected]>
  • Loading branch information
scuffle-brawl[bot] authored Jan 10, 2025
2 parents 55b0764 + 0737aa6 commit 905efab
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crates/aac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name = "scuffle-aac"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A crate for decoding AAC audio headers."
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
readme = "README.md"
documentation = "https://docs.rs/scuffle-aac"
keywords = ["aac", "audio", "codec"]

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
Expand Down
1 change: 1 addition & 0 deletions crates/aac/LICENSE.Apache-2.0
1 change: 1 addition & 0 deletions crates/aac/LICENSE.MIT
17 changes: 17 additions & 0 deletions crates/aac/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# scuffle-aac

> [!WARNING]
> This crate is under active development and may not be stable.
[![crates.io](https://img.shields.io/crates/v/scuffle-aac.svg)](https://crates.io/crates/scuffle-aac) [![docs.rs](https://img.shields.io/docsrs/scuffle-aac)](https://docs.rs/scuffle-aac)

---

A crate for decoding AAC audio headers.

## License

This project is licensed under the [MIT](./LICENSE.MIT) or [Apache-2.0](./LICENSE.Apache-2.0) license.
You can choose between one of them if you use this work.

`SPDX-License-Identifier: MIT OR Apache-2.0`
11 changes: 11 additions & 0 deletions crates/aac/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
//! # scuffle-aac
//!
//! A crate for decoding AAC audio headers.
//!
//! ## License
//!
//! This project is licensed under the [MIT](./LICENSE.MIT) or
//! [Apache-2.0](./LICENSE.Apache-2.0) license. You can choose between one of
//! them if you use this work.
//!
//! `SPDX-License-Identifier: MIT OR Apache-2.0`
#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]

use std::io;
Expand Down

0 comments on commit 905efab

Please sign in to comment.