Stacked on #222 (base `feat/c-abi-hub`), so the diff is just the additions on top of the hub foundation — no merge of #222 required. ## What this adds **Examples — full parity with rust/python/node (`examples/c/`)** - `streaming.c` upgraded to the multi-indicator (SMA/EMA/RSI/MACD + signals) demo - `backtest.c`, `multi_timeframe.c` (manual time-bucket resampling), `parallel_assets.c` (serial vs OpenMP fan-out, one handle per asset) - three educational strategies: `strategy_rsi_mean_reversion.c`, `strategy_macd_adx.c`, `strategy_bollinger_squeeze.c` - two network examples shelling out to `curl`: `fetch_btcusdt.c`, `live_binance.c` (REST poll) - two header-only helpers (`wickra_csv.h`, `wickra_strategy.h`) since the C ABI ships no IO layer - CMake builds all 11; the 9 offline ones run under `ctest` on 3 OS; the network two are built-only **Docs & metadata — surface the C ABI everywhere it was missing** - ARCHITECTURE diagram + crate table, SECURITY + THREAT_MODEL (the C ABI as the sole `unsafe` FFI surface), the three binding package READMEs, issue/PR templates, CHANGELOG, and the GitHub About template (live About + org description updated too) **Cleanup** - removed all references to the private generator tooling from public files (`bindings/c/src/lib.rs` header, `CONTRIBUTING.md`, `sync-about.yml`) Verified locally: `cargo build -p wickra-c --release`, `cmake + ctest` (9/9 pass), and `-Wall -Wextra -Wpedantic` clean on gcc 13.
40 lines
715 B
Markdown
40 lines
715 B
Markdown
---
|
|
name: Bug report
|
|
about: Report incorrect behaviour in Wickra
|
|
title: "[Bug] "
|
|
labels: bug
|
|
assignees: ""
|
|
---
|
|
|
|
## Description
|
|
|
|
<!-- A clear description of what is wrong. -->
|
|
|
|
## Reproduction
|
|
|
|
<!-- Minimal code that reproduces the problem. -->
|
|
|
|
```rust
|
|
// or python / javascript
|
|
```
|
|
|
|
## Expected behaviour
|
|
|
|
<!-- What you expected to happen, ideally with a reference value
|
|
(TA-Lib, pandas-ta, hand-computed). -->
|
|
|
|
## Actual behaviour
|
|
|
|
<!-- What happened instead. -->
|
|
|
|
## Environment
|
|
|
|
- Wickra version:
|
|
- Language / binding: <!-- Rust crate / Python / Node / WASM / C ABI -->
|
|
- OS and architecture:
|
|
- Rust / Python / Node version (If relevant):
|
|
|
|
## Additional context
|
|
|
|
<!-- Logs, screenshots, anything else. -->
|