2022-07-13 21:51:03 +04:00
|
|
|
[workspace]
|
2022-07-16 03:12:26 +04:00
|
|
|
members = [".", "examples/client", "examples/webrtc-proxy"]
|
2022-07-13 21:51:03 +04:00
|
|
|
default-members = ["."]
|
|
|
|
|
2021-06-04 03:26:45 +04:00
|
|
|
[package]
|
|
|
|
name = "retina"
|
2023-02-02 20:45:40 +04:00
|
|
|
version = "0.4.5"
|
2021-06-04 03:26:45 +04:00
|
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
|
|
license = "MIT/Apache-2.0"
|
2022-04-29 09:19:20 +04:00
|
|
|
edition = "2021"
|
2021-06-04 03:26:45 +04:00
|
|
|
keywords = ["rtsp", "multimedia", "video", "streaming", "ip-camera"]
|
|
|
|
categories = ["network-programming", "multimedia"]
|
|
|
|
description = "high-level RTSP multimedia streaming library"
|
2021-06-10 09:26:52 +04:00
|
|
|
repository = "https://github.com/scottlamb/retina"
|
2021-06-26 03:47:30 +04:00
|
|
|
include = ["src/**/*", "benches", "Cargo.toml"]
|
2023-01-31 10:25:19 +04:00
|
|
|
rust-version = "1.64"
|
2021-06-04 03:26:45 +04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
base64 = "0.13.0"
|
2022-09-29 08:38:46 +04:00
|
|
|
bitstream-io = "1.1"
|
2021-06-04 03:26:45 +04:00
|
|
|
bytes = "1.0.1"
|
|
|
|
futures = "0.3.14"
|
2022-09-29 08:38:46 +04:00
|
|
|
h264-reader = "0.6.0"
|
2021-10-21 00:38:49 +04:00
|
|
|
hex = "0.4.3"
|
|
|
|
http-auth = "0.1.2"
|
2021-06-04 03:26:45 +04:00
|
|
|
log = "0.4.8"
|
|
|
|
once_cell = "1.7.2"
|
|
|
|
pin-project = "1.0.7"
|
2022-07-11 22:59:40 +04:00
|
|
|
pretty-hex = "0.3.0"
|
2021-08-28 03:30:55 +04:00
|
|
|
rand = "0.8.3"
|
2023-02-02 20:45:40 +04:00
|
|
|
rtsp-types = "0.0.5"
|
2022-03-08 22:05:25 +04:00
|
|
|
sdp-types = "0.1.4"
|
2021-06-04 03:26:45 +04:00
|
|
|
smallvec = { version = "1.6.1", features = ["union"] }
|
2021-07-08 21:52:39 +04:00
|
|
|
thiserror = "1.0.25"
|
2021-06-04 03:26:45 +04:00
|
|
|
time = "0.1.43"
|
2021-09-10 05:31:46 +04:00
|
|
|
tokio = { version = "1.11.0", features = ["macros", "net", "rt", "time"] }
|
2022-07-11 22:59:40 +04:00
|
|
|
tokio-util = { version = "0.7.3", features = ["codec"] }
|
2021-06-04 03:26:45 +04:00
|
|
|
url = "2.2.1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-31 10:26:57 +04:00
|
|
|
criterion = { version = "0.4.0", features = ["async_tokio"] }
|
2021-06-04 03:26:45 +04:00
|
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
2022-07-13 21:51:03 +04:00
|
|
|
tokio = { version = "1.5.0", features = ["io-util", "macros", "rt-multi-thread", "test-util"] }
|
2021-06-10 10:39:27 +04:00
|
|
|
|
2021-06-11 00:50:20 +04:00
|
|
|
[profile.bench]
|
|
|
|
debug = true
|
|
|
|
|
2021-06-28 20:58:38 +04:00
|
|
|
[[bench]]
|
|
|
|
name = "client"
|
|
|
|
harness = false
|
|
|
|
|
2021-06-10 10:39:27 +04:00
|
|
|
[[bench]]
|
|
|
|
name = "depacketize"
|
|
|
|
harness = false
|