35 lines
881 B
TOML
35 lines
881 B
TOML
[package]
|
|
name = "paracas-fetch"
|
|
description = "HTTP client and data fetching for paracas tick data downloader"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
authors.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
paracas-types = { workspace = true }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
bytes = { workspace = true }
|
|
lzma-rs = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
chrono = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|