retina/Cargo.toml

54 lines
1.4 KiB
TOML
Raw Normal View History

2021-06-04 03:26:45 +04:00
[package]
name = "retina"
2022-04-13 01:18:27 +04:00
version = "0.3.9"
2021-06-04 03:26:45 +04:00
authors = ["Scott Lamb <slamb@slamb.org>"]
license = "MIT/Apache-2.0"
edition = "2018"
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"]
2021-06-04 03:26:45 +04:00
[dependencies]
base64 = "0.13.0"
bitreader = "0.3.3"
bytes = "1.0.1"
futures = "0.3.14"
2021-06-10 00:50:30 +04:00
h264-reader = "0.5.0"
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"
pretty-hex = "0.2.1"
rand = "0.8.3"
2021-06-28 20:58:38 +04:00
rtp-rs = "0.6.0"
2021-10-27 08:30:25 +04:00
rtsp-types = "0.0.3"
sdp-types = "0.1.4"
2021-06-04 03:26:45 +04:00
smallvec = { version = "1.6.1", features = ["union"] }
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"] }
2021-06-04 03:26:45 +04:00
tokio-util = { version = "0.6.6", features = ["codec"] }
url = "2.2.1"
[dev-dependencies]
anyhow = "1.0.41"
2021-06-28 20:58:38 +04:00
criterion = { version = "0.3.4", features = ["async_tokio"] }
2021-09-08 06:25:40 +04:00
itertools = "0.10.1"
2021-06-04 03:26:45 +04:00
mylog = { git = "https://github.com/scottlamb/mylog" }
2021-06-05 08:20:03 +04:00
structopt = "0.3.21"
tokio = { version = "1.5.0", features = ["fs", "io-util", "macros", "parking_lot", "rt-multi-thread", "signal", "test-util"] }
2021-06-10 10:39:27 +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