prepare v0.0.2

This commit is contained in:
Scott Lamb 2021-06-25 16:47:30 -07:00
parent a097d01f62
commit 6503398d3f
3 changed files with 11 additions and 3 deletions

8
CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
## v0.0.2 (2021-06-25)
* Video frames are now provided as a single, contiguous `Bytes`, and
H.264 depacketization is more efficient ([#4](https://github.com/scottlamb/retina/issues/4)).
## v0.0.1 (2021-06-09)
Initial release.

2
Cargo.lock generated
View File

@ -1083,7 +1083,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "retina"
version = "0.0.1"
version = "0.0.2"
dependencies = [
"async-stream",
"base64",

View File

@ -1,6 +1,6 @@
[package]
name = "retina"
version = "0.0.1"
version = "0.0.2"
authors = ["Scott Lamb <slamb@slamb.org>"]
license = "MIT/Apache-2.0"
edition = "2018"
@ -8,7 +8,7 @@ keywords = ["rtsp", "multimedia", "video", "streaming", "ip-camera"]
categories = ["network-programming", "multimedia"]
description = "high-level RTSP multimedia streaming library"
repository = "https://github.com/scottlamb/retina"
include = ["src/**/*", "Cargo.toml"]
include = ["src/**/*", "benches", "Cargo.toml"]
[dependencies]
async-stream = "0.3.1"