2025-12-29 17:05:07 -05:00
|
|
|
[package]
|
|
|
|
|
name = "paracas-daemon"
|
2025-12-29 18:02:56 -05:00
|
|
|
description = "Background job management for paracas tick data downloader"
|
2025-12-29 17:05:07 -05:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
2025-12-29 18:02:56 -05:00
|
|
|
documentation.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2025-12-29 17:05:07 -05:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2025-12-29 18:02:56 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
2025-12-29 17:05:07 -05:00
|
|
|
[dependencies]
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
uuid = { workspace = true }
|
|
|
|
|
directories = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|