forked from scottlamb/retina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (31 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "retina-record"
version = "0.2.2"
edition = "2021"
rust-version = "1.70"
authors = ["Andrew Straw <[email protected]>"]
repository = "https://github.com/strawlab/retina-record"
license = "MIT OR Apache-2.0"
keywords = ["video", "camera", "mp4", "rtsp", "video-stream"]
categories = ["network-programming", "multimedia::video"]
description = "Command-line application to record MP4 video from RTSP cameras"
[dependencies]
bytes = "1.0.1"
futures = "0.3.14"
retina = "0.4.7"
tokio = { version = "1.5.0", features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
"signal",
] }
url = "2.2.1"
anyhow = "1.0.41"
clap = { version = "4.1.4", features = ["derive"] }
chrono = { version = "0.4.34", features = ["serde"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
hickory-resolver = { version = "0.24.0", features = ["tokio"] }