diff --git a/crates/wickra-core/Cargo.toml b/crates/wickra-core/Cargo.toml index e11525bb..c4703870 100644 --- a/crates/wickra-core/Cargo.toml +++ b/crates/wickra-core/Cargo.toml @@ -11,6 +11,12 @@ 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 diff --git a/crates/wickra-data/Cargo.toml b/crates/wickra-data/Cargo.toml index 9d1772d7..8a28072e 100644 --- a/crates/wickra-data/Cargo.toml +++ b/crates/wickra-data/Cargo.toml @@ -11,6 +11,12 @@ homepage.workspace = true readme.workspace = true keywords.workspace = true categories.workspace = true +documentation = "https://docs.rs/wickra-data" + +# Render the docs on docs.rs with every feature enabled so the optional +# live-binance feed is documented (otherwise it is hidden behind its feature). +[package.metadata.docs.rs] +all-features = true [lints] workspace = true diff --git a/crates/wickra/Cargo.toml b/crates/wickra/Cargo.toml index c4b185da..bc6b4465 100644 --- a/crates/wickra/Cargo.toml +++ b/crates/wickra/Cargo.toml @@ -11,6 +11,11 @@ homepage.workspace = true readme.workspace = true keywords.workspace = true categories.workspace = true +documentation = "https://docs.rs/wickra" + +# Render the docs on docs.rs with every feature enabled. +[package.metadata.docs.rs] +all-features = true [lints] workspace = true