The three published crates had no documentation link and no docs.rs configuration, so wickra-data's feature-gated live-binance module would not render on docs.rs. Add documentation = "https://docs.rs/<crate>" and a [package.metadata.docs.rs] section with all-features = true to wickra-core, wickra, and wickra-data. No `exclude` is added: each crate directory contains only src/ (plus benches/examples that are useful source), so there is nothing irrelevant to drop from the .crate.
35 lines
854 B
TOML
35 lines
854 B
TOML
[package]
|
|
name = "wickra-core"
|
|
description = "Core streaming-first technical indicators engine for the Wickra library"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation = "https://docs.rs/wickra-core"
|
|
|
|
# Render the docs on docs.rs with every feature enabled so the parallel
|
|
# (rayon-backed) batch APIs are documented.
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true }
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["parallel"]
|
|
parallel = ["dep:rayon"]
|
|
|
|
[dev-dependencies]
|
|
approx = { workspace = true }
|
|
proptest = { workspace = true }
|