mirror of
https://github.com/nestriness/nestri.git
synced 2026-09-27 04:52:25 +03:00
Fixes: #335 Still a work-in-progress. --------- Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com> Co-authored-by: Claude Opus 5 <noreply@anthropic.com> Co-authored-by: Wanjohi <elviswanjohi47@gmail.com>
30 lines
620 B
TOML
30 lines
620 B
TOML
[package]
|
|
name = "neshub"
|
|
version = "0.2.0"
|
|
description = "Muxes captured video, audio and input into one QUIC connection to the client"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "neshub"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
iroh = "1.2"
|
|
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
libc.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
|
|
bytes = "1"
|
|
base64 = "0.22"
|
|
uuid = { version = "1", features = ["v7"] }
|
|
|
|
nesprotocol = { path = "../../crates/nesprotocol" }
|