d75d5585f5
We're likely to add more examples with more dependencies (e.g. ffmpeg, gstreamer, webrtc). Nice to not have their deps in the main crate's dev-dependencies, and likewise to have each example show its true dependencies. As mentioned here: https://github.com/scottlamb/retina/issues/19#issuecomment-902302720
19 lines
421 B
TOML
19 lines
421 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
rust-version = "1.59"
|
|
|
|
[dependencies]
|
|
bytes = "1.0.1"
|
|
futures = "0.3.14"
|
|
log = "0.4.8"
|
|
retina = { path = "../../" }
|
|
tokio = { version = "1.5.0", features = ["fs", "io-util", "macros", "rt-multi-thread", "signal"] }
|
|
url = "2.2.1"
|
|
anyhow = "1.0.41"
|
|
itertools = "0.10.1"
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
|
structopt = "0.3.21"
|