Files
dtourolleandClaude Opus 5 7c17ca6158 Core ride logic, FTMS client, FIT encoder and probe CLI
Adds backing state for Resistance and Erg control modes, which had no
value to hold and so could never satisfy FR-4.3/FR-4.6.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-05 13:34:27 +02:00

33 lines
802 B
TOML

[workspace]
resolver = "2"
members = ["crates/core", "crates/ble", "crates/fit", "crates/probe", "src-tauri"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/dtourolle/BikeControl"
[workspace.dependencies]
bikecontrol-core = { path = "crates/core" }
bikecontrol-ble = { path = "crates/ble" }
bikecontrol-fit = { path = "crates/fit" }
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml_ng = "0.10"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
btleplug = "0.11"
futures = "0.3"
uuid = "1"
roxmltree = "0.20"
chrono = "0.4"
[profile.release]
lto = true
opt-level = 3