• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

varlink / rust
56%

Build:
DEFAULT BRANCH: master
Repo Added 19 Mar 2018 03:36PM UTC
Files 27
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: master
CHANGE BRANCH
x
Reset
  • master
  • RaitoBezarius/master
  • asn-generator
  • clap_update
  • clippy
  • dependabot/cargo/bitflags-2.0.0
  • dependabot/cargo/bitflags-2.0.2
  • dependabot/cargo/bitflags-2.1.0
  • dependabot/cargo/bitflags-2.2.1
  • dependabot/cargo/bitflags-2.3.1
  • dependabot/cargo/bitflags-2.3.3
  • dependabot/cargo/bitflags-2.4.0
  • dependabot/cargo/bitflags-2.4.1
  • dependabot/cargo/bitflags-2.6.0
  • dependabot/cargo/clap_complete-4.5.60
  • dependabot/cargo/colored-3.0.0
  • dependabot/cargo/proc-macro2-1.0.103
  • dependabot/cargo/quote-1.0.42
  • dependabot/cargo/syn-2.0.10
  • dependabot/cargo/syn-2.0.108
  • dependabot/cargo/syn-2.0.110
  • dependabot/cargo/syn-2.0.13
  • dependabot/cargo/syn-2.0.15
  • dependabot/cargo/syn-2.0.16
  • dependabot/cargo/syn-2.0.27
  • dependabot/cargo/syn-2.0.28
  • dependabot/cargo/syn-2.0.29
  • dependabot/cargo/syn-2.0.3
  • dependabot/cargo/syn-2.0.31
  • dependabot/cargo/syn-2.0.32
  • dependabot/cargo/syn-2.0.37
  • dependabot/cargo/syn-2.0.38
  • dependabot/cargo/thiserror-2.0.18
  • dependabot/cargo/uds_windows-1.0.1
  • feat/generator-safe-idents
  • feat/methodcall-push-fd
  • feature/hh/async_more
  • feature/hh/async_with
  • feature/hh/features
  • feature/hh/tempdir
  • feature/introspection
  • fix/generator-duplicate-error-types
  • peg
  • refs/heads/dependabot/cargo/syn-2.0.18
  • refs/tags/varlink-cli-4.5.3
  • refs/tags/varlink_generator-10.1.0
  • refs/tags/varlink_parser-4.2.0
  • remove-unix_socket-dep
  • rust-version
  • style
  • syn-2-upgrade
  • unignore-tests
  • v13

09 Aug 2026 07:02PM UTC coverage: 56.477%. Remained the same
31330589956

push

github

web-flow
fix: avoid duplicate anonymous error types (#153)

## Summary

- prevent the error reply-method pass from emitting anonymous nested
helper types
- leave helper-type definitions to the error argument generation pass so
each is emitted exactly once
- add regression coverage and refresh generated fixtures and examples

## Tests

- cargo test -p varlink_generator

2 of 2 new or added lines in 1 file covered. (100.0%)

3065 of 5427 relevant lines covered (56.48%)

14.09 hits per line

Relevant lines Covered
Build:
Build:
5427 RELEVANT LINES 3065 COVERED LINES
14.09 HITS PER LINE
Source Files on master
  • Tree
  • List 27
  • Changed 1
  • Source Changed 0
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
31330589956 master fix: avoid duplicate anonymous error types (#153) ## Summary - prevent the error reply-method pass from emitting anonymous nested helper types - leave helper-type definitions to the error argument generation pass so each is emitted exactly once ... push 09 Aug 2026 07:04PM UTC web-flow github
56.48
31330154543 master fix: generator fixes for keyword identifiers, null optionals and Default (#152) Three `varlink_generator` fixes/improvements, found while generating client code for systemd's `io.systemd.*` interfaces (which use `type` and friends as field names ... push 09 Aug 2026 06:54PM UTC web-flow github
56.48
30166081117 master feat: add MethodCall::push_fd() for passing file descriptors (SCM_RIGHTS) (#149) systemd's `sd-varlink` extends varlink with file-descriptor passing over the Unix socket via SCM_RIGHTS: fds are pushed before the call and referenced from the param... push 25 Jul 2026 04:42PM UTC web-flow github
56.31
30051844958 master feat: Expose some functions for async users who accepts the connection themselves (#147) Fixes #146. The rationale is described in commit messages but it boils down to: it's very hard to accept connections yourselves and reuse these logic. push 23 Jul 2026 11:03PM UTC web-flow github
54.63
20912542228 master fix: add --all-features to coverage and lint workflows (#144) The coverage and clippy workflows were not testing async code because they ran without --all-features. The tokio feature enables async support in the varlink crate, so without it: - Co... push 12 Jan 2026 08:26AM UTC web-flow github
54.42
20912073532 master chore: replace deprecated `tempdir` crate with `tempfile` (#142) The `tempdir` crate has been deprecated in favor of `tempfile`, which now provides all the same functionality. This migration updates varlink_generator's test dependencies to use `t... push 12 Jan 2026 08:06AM UTC web-flow github
54.42
20911859055 master build(deps): bump quote from 1.0.41 to 1.0.42 (#137) Bumps [quote](https://github.com/dtolnay/quote) from 1.0.41 to 1.0.42. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/quote/releases">quote's... push 12 Jan 2026 07:56AM UTC web-flow github
54.42
20879375911 master feat: add socket activation and bridge support for AsyncConnection (#143) ## Summary - Add `AsyncConnection::with_activate()` for systemd-style socket activation - spawns a server subprocess with `LISTEN_FDS`, `LISTEN_PID`, and `LISTEN_FDNAMES` ... push 10 Jan 2026 02:01PM UTC web-flow github
54.42
20877281246 master feat: add multi-reply support for async mode (more/continues flags) (#141) The `more` flag in requests and `continues` flag in responses were not working in async mode. This commit fixes the async code generation and client to properly support mu... push 10 Jan 2026 11:00AM UTC web-flow github
54.0
20335336910 master feat: add AsyncVarlinkService for async introspection support (#139) Add introspection support (GetInfo, GetInterfaceDescription) for async varlink services, addressing issue #138. Changes: - Add AsyncInterface trait extending AsyncConnectionHan... push 18 Dec 2025 11:26AM UTC web-flow github
53.75
See All Builds (348)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc