Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
54
examples/data/edgar/Cargo.toml
Normal file
54
examples/data/edgar/Cargo.toml
Normal file
@@ -0,0 +1,54 @@
|
||||
[package]
|
||||
name = "ruvector-data-edgar"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
description = "SEC EDGAR financial data integration with coherence analysis for RuVector"
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
keywords = ["edgar", "sec", "finance", "xbrl", "coherence"]
|
||||
categories = ["finance", "database"]
|
||||
|
||||
[dependencies]
|
||||
# Core framework
|
||||
ruvector-data-framework = { path = "../framework" }
|
||||
|
||||
# Async runtime
|
||||
tokio.workspace = true
|
||||
futures.workspace = true
|
||||
async-trait.workspace = true
|
||||
|
||||
# Serialization
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
||||
# HTTP client
|
||||
reqwest.workspace = true
|
||||
|
||||
# Time handling
|
||||
chrono.workspace = true
|
||||
|
||||
# Logging
|
||||
tracing.workspace = true
|
||||
thiserror.workspace = true
|
||||
|
||||
# Data processing
|
||||
rayon.workspace = true
|
||||
ndarray.workspace = true
|
||||
|
||||
# XML parsing for XBRL
|
||||
quick-xml = { version = "0.36", features = ["serialize"] }
|
||||
|
||||
# CSV parsing for bulk datasets
|
||||
csv = "1.3"
|
||||
|
||||
# Compression
|
||||
flate2 = "1.0"
|
||||
zip = "2.2"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-test = "0.4"
|
||||
rand = "0.8"
|
||||
|
||||
[[example]]
|
||||
name = "coherence_watch"
|
||||
path = "examples/coherence_watch.rs"
|
||||
Reference in New Issue
Block a user