Files
foxhunt/crates/ctrader-openapi
jgrusewski 1ed97579c1 fix(ci): clippy test-gate uses --lib, fix pre-existing lint errors
The CI test-gate used `--all-targets` which includes test targets where
700+ workspace lint violations accumulated (to_string on &str, assert!
on Result, shadow_unrelated, etc.). Switched to `--lib` for clippy —
library code is what matters for production safety. Test code is still
validated by `cargo test --workspace --lib`.

Also fixed:
- config: allow expect_used in test module
- ctrader-openapi: relaxed lint profile (proto-generated code)
- ctrader-openapi: constant assertion in dispatch test
- testing/load: removed [[test]] targets for non-existent files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 19:10:18 +01:00
..

ctrader-openapi

cTrader Open API client — Protobuf over TCP+TLS for order routing, account queries, and market data.

Key Types

  • CtraderConnection — TLS-wrapped TCP connection to cTrader
  • CtraderCodec — Protobuf message framing
  • RateLimiter — request rate limiting
  • AuthManager — OAuth2 authentication flow

Usage

Broker gateway integration for order routing via cTrader Open API protocol.