Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c681bf4
🗑️ zb: drop unneeded peer_sid()
elmarco Jan 31, 2024
cd905a9
🐛 zb: fix invalid value in tokio/non-unix path
elmarco Jan 31, 2024
fb2a399
🩹 zb: implement peer_credentials() for tokio win32
elmarco Jan 31, 2024
aafaded
✏️ zb: typo
elmarco Jan 31, 2024
5e4fd67
♻️ zb: impl From<Socket> for BoxedSplit
elmarco Jan 31, 2024
03387b1
♻️ zb: connect to the target and return the associated guid
elmarco Jan 30, 2024
a5305fb
➕ zb: add dbus-addr dependency
elmarco Jan 31, 2024
9c543a0
✨ zb: add Error::DBusAddr to wrap dbus-addr kind
elmarco Jan 31, 2024
1486109
💥 zb: start using DBusAddr, and handle ;-separated address
elmarco Jan 30, 2024
a5147bb
♻️ zb: add TCP transport connection
elmarco Jan 31, 2024
c14e65e
♻️ zb: move TCP connection test
elmarco Jan 31, 2024
3904c03
♻️ zb: add NonceTCP transport
elmarco Jan 31, 2024
6898c02
♻️ zb: move NonceTCP connection test
elmarco Jan 31, 2024
d98caff
♻️ zb: add Unix transport
elmarco Jan 31, 2024
a7538ca
♻️ zb: add Vsock transport connection
elmarco Jan 31, 2024
b1f49c6
♻️ zb: add Launchd transport connection
elmarco Feb 1, 2024
c161cf2
♻️ zb: move Launchd connection test
elmarco Jan 31, 2024
eb31b7e
♻️ zb: make windows_autolaunch_bus_address() return String
elmarco Feb 1, 2024
b570b80
✨ zb: make connect() recursively callable
elmarco Feb 1, 2024
b572278
♻️ zb: add win32 Autolaunch connection
elmarco Feb 1, 2024
2921ee4
♻️ zb: move win32 Autolaunch connection test
elmarco Jan 31, 2024
ed04080
🔥 zb: drop address module
elmarco Jan 31, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions zbus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ async-io = [
"futures-util/io",
]
tokio = ["dep:tokio"]
vsock = ["dep:vsock", "dep:async-io"]
tokio-vsock = ["dep:tokio-vsock", "tokio"]
vsock = ["dep:vsock", "dep:async-io", "dbus-addr/vsock"]
tokio-vsock = ["dep:tokio-vsock", "tokio", "dbus-addr/vsock"]

[dependencies]
dbus-addr = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_repr = "0.1.9"
zvariant = { path = "../zvariant", version = "4.0.0", default-features = false, features = [
Expand Down
Loading