paracas downloader 🚧
This commit is contained in:
+94
@@ -0,0 +1,94 @@
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
rust-version = "1.88"
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/factordynamics/paracas"
|
||||
repository = "https://github.com/factordynamics/paracas"
|
||||
documentation = "https://docs.rs/paracas"
|
||||
authors = ["Factor Dynamics"]
|
||||
keywords = ["dukascopy", "forex", "tick-data", "trading", "historical-data"]
|
||||
categories = ["finance", "command-line-utilities", "encoding"]
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["crates/*", "bin"]
|
||||
default-members = ["bin"]
|
||||
|
||||
[workspace.lints.rust]
|
||||
missing-debug-implementations = "warn"
|
||||
missing-docs = "warn"
|
||||
unreachable-pub = "warn"
|
||||
unused-must-use = "deny"
|
||||
rust-2018-idioms = "deny"
|
||||
unnameable-types = "warn"
|
||||
|
||||
[workspace.lints.rustdoc]
|
||||
all = "warn"
|
||||
|
||||
[workspace.lints.clippy]
|
||||
all = { level = "warn", priority = -1 }
|
||||
missing-const-for-fn = "warn"
|
||||
use-self = "warn"
|
||||
option-if-let-else = "warn"
|
||||
redundant-clone = "warn"
|
||||
|
||||
[profile.dev]
|
||||
debug = "line-tables-only"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
lto = "thin"
|
||||
debug = "none"
|
||||
strip = "symbols"
|
||||
codegen-units = 16
|
||||
|
||||
[workspace.dependencies]
|
||||
# Internal crates
|
||||
paracas-lib = { path = "crates/paracas-lib", version = "0.1.0" }
|
||||
paracas-types = { path = "crates/paracas-types", version = "0.1.0" }
|
||||
paracas-instruments = { path = "crates/paracas-instruments", version = "0.1.0" }
|
||||
paracas-fetch = { path = "crates/paracas-fetch", version = "0.1.0" }
|
||||
paracas-aggregate = { path = "crates/paracas-aggregate", version = "0.1.0" }
|
||||
paracas-format = { path = "crates/paracas-format", version = "0.1.0" }
|
||||
|
||||
# Async runtime
|
||||
tokio = { version = "1.42", features = ["full"] }
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
|
||||
# HTTP client
|
||||
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "gzip", "stream"] }
|
||||
bytes = "1.9"
|
||||
|
||||
# Compression
|
||||
lzma-rs = "0.3"
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
csv-async = { version = "1.3", features = ["tokio"] }
|
||||
|
||||
# Arrow/Parquet
|
||||
arrow = { version = "54", features = ["chrono-tz"] }
|
||||
parquet = { version = "54", features = ["async", "arrow"] }
|
||||
|
||||
# Date/Time
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
||||
# CLI
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
indicatif = "0.17"
|
||||
|
||||
# Error handling
|
||||
thiserror = "2.0"
|
||||
anyhow = "1.0"
|
||||
|
||||
# Binary parsing
|
||||
byteorder = "1.5"
|
||||
|
||||
# Utilities
|
||||
derive_more = { version = "1.0", default-features = false, features = ["display", "from", "into"] }
|
||||
|
||||
# Testing
|
||||
approx = "0.5"
|
||||
Reference in New Issue
Block a user