Skip to content

🔖 zbus 5.2.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 15 Dec 16:15
· 7 commits to main since this release
e60691b
  • ⚡️ Optimizations:
    • Don't use proxies in connection code. This allows LTO to remove the proxy-side code from the
      binary if the users isn't directly using proxy APIs. On busd, this reduces the binary size by
      200KB.
    • Disable docs in fdo interface introspection. These interfaces are well-known and documented (in
      the spec itself), so we don't need to provide the docs in the introspection data at runtime.
    • interface now allows disabling docs in introspection. Introspection strings are part of the
      binary and can have an impact on the binary size. This change allows to disable the addition of
      docs in the introspection for cases where there interface is well-known/well-documented. For
      example, combined with the following change of using this in the zbus::fdo interfaces, this
      will allow busd binary to shed 26 KB.
    • Avoid some formatting at runtime in interface macro. Add values already known to the
      introspection XML at compile time. This also removes about 500 bytes from busd binary size.
  • 🚩 Add gvariant feature flag to zbus_macros. It's just a proxy feature for zvariant and
    only needed to fix the build in the root workspace when building with --features gvariant.
    #1125.
  • ⬆️ Update tokio-vsock to 0.6.
  • 🔊 Skip self in an instrumented method.
  • 🔥 Drop now unused sink feature of futures-util.