docs: include README in lib.rs and update package metadata in Cargo.toml

This commit is contained in:
Palash Tyagi 2024-11-13 01:31:51 +00:00
parent 188039bc35
commit b04a67c1d2
3 changed files with 9 additions and 12 deletions

View File

@ -1,7 +1,12 @@
[package] [package]
name = "msyrs" name = "msyrs"
version = "0.0.1"
edition = "2021" edition = "2021"
version = "0.0.1"
readme = "README.md"
[package.metadata.docs]
rustdoc = ["--cfg", "doc"]
[dependencies] [dependencies]
reqwest = { version = "0.12.9", features = ["blocking", "json"] } reqwest = { version = "0.12.9", features = ["blocking", "json"] }

View File

@ -4,29 +4,19 @@ A Rust implementation of the [Macrosynergy Python Package](https://github.com/ma
## Status ## Status
- Docs
- [x] Building
- [ ] written?
- Download - Download
- [x] OAuth workflow
- [x] Heartbeat
- [x] Get Catalogue - [x] Get Catalogue
- [x] Get Generic DQ Time Series - [x] Get Generic DQ Time Series
- [x] Get JPMaQS Indicators (formatted as array)
- [x] Get JPMaQS Indicators as Polars DataFrame - [x] Get JPMaQS Indicators as Polars DataFrame
- [x] Add QDF option
- [ ] Save to disk functionality - [ ] Save to disk functionality
- [x] Hacky iterative method - [x] Hacky iterative method
- [ ] Non-hacky way to save to disk - [ ] Non-hacky way to save to disk
- Utils - Utils
- [ ] Reduce DF - [ ] Reduce DF
- [ ] Reduce DF by ticker
- [ ] Apply Blacklist - [ ] Apply Blacklist
- [ ] Get Blacklist - [ ] Update DF
- [ ] Apply Slip
- Panel - Panel
- [ ] Historic Volatility - [ ] Historic Volatility

View File

@ -1 +1,3 @@
#![doc = include_str!("../README.md")]
pub mod download; pub mod download;