-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #244 - troy/aac-docs, r=lennartkloock
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
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)'] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../LICENSE.Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../LICENSE.MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters