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

wboayue / rust-ibapi / 16396918926
86%

Build:
DEFAULT BRANCH: main
Ran 20 Jul 2025 06:24AM UTC
Jobs 1
Files 77
Run time 1min
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

20 Jul 2025 06:21AM UTC coverage: 71.079%. Remained the same
16396918926

push

github

web-flow
Breaking: Require explicit feature selection (sync or async) (#280)

* Require explicit feature selection (sync or async)

Breaking Change: Remove default features
- Users must now explicitly choose between 'sync' or 'async' features
- No default feature - compilation fails with helpful error if neither specified
- Prevents confusion about which API variant is being used

Changes:
- Remove default = ["sync"] from Cargo.toml
- Add compile_error\! checks in lib.rs for missing/conflicting features
- Simplify feature guards from #[cfg(all(feature = "sync", not(feature = "async")))] to #[cfg(feature = "sync")]
- Update all documentation and examples with new usage

Usage:
  cargo add ibapi --features sync   # For synchronous API
  cargo add ibapi --features async  # For asynchronous API

In Cargo.toml:
  ibapi = { version = "2.0", features = ["sync"] }   # or ["async"]

Benefits:
- Explicit choice prevents accidental use of wrong API variant
- Clearer feature guards improve code readability
- Helpful compile errors guide new users
- Consistent with Rust ecosystem best practices

4903 of 6898 relevant lines covered (71.08%)

36.08 hits per line

Jobs
ID Job ID Ran Files Coverage
1 16396918926.1 20 Jul 2025 06:24AM UTC 77
71.08
GitHub Action Run
Source Files on build 16396918926
  • Tree
  • List 77
  • Changed 13
  • Source Changed 13
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #16396918926
  • b4f5e895 on github
  • Prev Build on main (#16396614571)
  • Next Build on main (#16396908475)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc