-
-
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.
Cleans up the AMF0 decoder / encoder crate and adds some documentation around its usage.
- Loading branch information
1 parent
905efab
commit 1296703
Showing
37 changed files
with
959 additions
and
747 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
[package] | ||
name = "amf0" | ||
name = "scuffle-amf0" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
description = "A pure-rust implementation of AMF0 encoder and decoder." | ||
repository = "https://github.com/scufflecloud/scuffle" | ||
keywords = ["amf0", "rtmp", "flash", "video", "flv"] | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] } | ||
|
||
[dependencies] | ||
bytes = "1.5" | ||
byteorder = "1.5" | ||
num-traits = "0.2" | ||
num-derive = "0.4" | ||
scuffle-bytes-util.workspace = true | ||
thiserror = "2" | ||
scuffle-workspace-hack.workspace = true |
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-amf0 | ||
|
||
> [!WARNING] | ||
> This crate is under active development and may not be stable. | ||
[![crates.io](https://img.shields.io/crates/v/scuffle-amf0.svg)](https://crates.io/crates/scuffle-amf0) [![docs.rs](https://img.shields.io/docsrs/scuffle-amf0)](https://docs.rs/scuffle-amf0) | ||
|
||
--- | ||
|
||
A pure-rust implementation of AMF0 encoder and decoder. | ||
|
||
## 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` |
Oops, something went wrong.