Basic vsock proxying implementation

Currently just connecting to the host's session bus
This commit is contained in:
Val Packett 2025-07-04 21:52:14 -03:00
parent 11a682e19f
commit 14ce212e81
12 changed files with 1807 additions and 34 deletions

10
sidebus-common/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "sidebus-common"
version = "0.1.0"
edition = "2024"
[dependencies]
tracing = "0.1.41"
tokio = { version = "1.46.0", features = ["macros"] }
tokio-stream = "0.1.17"
zbus = { version = "5.7.1", default-features = false, features = ["tokio", "tokio-vsock", "bus-impl", "p2p"] }