29 lines
644 B
TOML
29 lines
644 B
TOML
[package]
|
|||
|
|
name = "wickra-core"
|
||
|
|
description = "Core streaming-first technical indicators engine for the Wickra library"
|
||
|
|
version.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
homepage.workspace = true
|
||
|
|
readme.workspace = true
|
||
|
|
keywords.workspace = true
|
||
|
|
categories.workspace = true
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
rayon = { workspace = true, optional = true }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["parallel"]
|
||
|
|
parallel = ["dep:rayon"]
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
approx = { workspace = true }
|
||
|
|
proptest = { workspace = true }
|