-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (58 loc) · 2.67 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (58 loc) · 2.67 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
resolver = "2"
members = ["types", "backend", "frontend", "mcp-server"]
default-members = ["backend"]
[workspace.package]
version = "0.6.6"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Per Enstedt <per.enstedt@eyevinn.se>"]
repository = "https://github.com/Eyevinn/strom"
homepage = "https://github.com/Eyevinn/strom"
description = "Visual GStreamer pipeline editor and manager"
[workspace.dependencies]
# Shared types
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.23", features = ["serde", "v4", "v5", "js"] }
# Backend
axum = { version = "0.8.9", features = ["ws", "multipart"] }
axum-server = { version = "0.8", features = ["tls-rustls"] }
tokio = { version = "1.52", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
tower-http = { version = "0.7", features = ["fs", "cors", "trace"] }
cairo-rs = { version = "0.22", features = ["v1_16"] }
gstreamer = { version = "0.25", features = ["v1_20"] }
gstreamer-app = { version = "0.25", features = ["v1_20"] }
gstreamer-controller = { version = "0.25", features = ["v1_20"] }
gstreamer-net = { version = "0.25", features = ["v1_20"] }
gstreamer-gl = { version = "0.25", features = ["v1_20"] }
gstreamer-video = { version = "0.25", features = ["v1_20"] }
# gio 0.22 matches the glib 0.22 transitive that gstreamer 0.25 pulls in.
# Used by the SRT stats parser to format peer GSocketAddress fields.
gio = "0.22"
gst-plugin-webrtc = { version = "0.15", features = ["whep", "whip"] }
gst-plugin-webrtchttp = { version = "0.15", default-features = false }
gst-plugin-audiofx = "0.15"
gst-plugin-inter = "0.15"
gst-plugin-rtp = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
tracing-appender = "0.2.5"
utoipa = { version = "5.5", features = ["axum_extras", "uuid"] }
utoipa-swagger-ui = { version = "9.0", features = ["axum"] }
garde = { version = "0.23", features = ["derive"] }
# Frontend
egui = "0.34"
egui-phosphor = "0.12"
# default-features disabled: eframe 0.34's `default` set includes `wgpu`, which
# would otherwise be pulled into the WASM build where wgpu fails to compile.
# Native-only renderer/platform features (wgpu, accesskit, wayland, x11) are
# re-added on the non-wasm target in frontend/Cargo.toml.
eframe = { version = "0.34", default-features = false, features = ["default_fonts", "persistence", "glow"] }
egui_extras = { version = "0.34", features = ["image"] }
egui_plot = "0.35"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
gloo-net = { version = "0.7", features = ["websocket"] }