mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## Description - Updates to latest Rust 2024 🎉 - Make DataChannel messages ordered on nestri-server side - Bugfixes and code improvements + formatting ## Type of Change - [x] Bug fix (non-breaking change) - [x] New feature (non-breaking change) ## Checklist - [x] I have updated relevant documentation - [x] My code follows the project's coding style - [x] My changes generate no new warnings/errors --------- Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com> Co-authored-by: Wanjohi <elviswanjohi47@gmail.com>
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "nestri-server"
|
|
version = "0.1.0-alpha.2"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "nestri-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main", features = ["v1_24"] }
|
|
gst-webrtc = { package = "gstreamer-webrtc", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "main", features = ["v1_24"] }
|
|
gstrswebrtc = { package = "gst-plugin-webrtc", git = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs", branch = "main", features = ["v1_22"] }
|
|
serde = {version = "1.0.214", features = ["derive"] }
|
|
tokio = { version = "1.41.0", features = ["full"] }
|
|
clap = { version = "4.5.20", features = ["env"] }
|
|
serde_json = "1.0.132"
|
|
webrtc = "0.12.0"
|
|
regex = "1.11.1"
|
|
rand = "0.9.0"
|
|
rustls = { version = "0.23.17", features = ["ring"] }
|
|
tokio-tungstenite = { version = "0.26.1", features = ["native-tls"] }
|
|
log = { version = "0.4.22", features = ["std"] }
|
|
chrono = "0.4.38"
|
|
futures-util = "0.3.31"
|
|
num-derive = "0.4.2"
|
|
num-traits = "0.2.19"
|
|
prost = "0.13.4"
|
|
prost-types = "0.13.4"
|