2026-05-21 17:50:45 +02:00
|
|
|
[package]
|
|
|
|
|
name = "wickra-python"
|
|
|
|
|
description = "Python bindings for the Wickra streaming-first technical indicators library."
|
|
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
2026-06-03 18:49:39 +02:00
|
|
|
license.workspace = true
|
2026-05-21 17:50:45 +02:00
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "_wickra"
|
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
2026-06-17 22:26:21 +02:00
|
|
|
[features]
|
|
|
|
|
# Build the bundled data layer against a statically compiled OpenSSL. The
|
|
|
|
|
# release workflow (and the manylinux/musllinux CI smoke job) enable this so the
|
|
|
|
|
# Linux wheels do not depend on system OpenSSL at build time. See the
|
|
|
|
|
# `vendored-tls` feature in wickra-data for the rationale.
|
|
|
|
|
vendored-tls = ["wickra-data/vendored-tls"]
|
|
|
|
|
|
2026-05-21 17:50:45 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
wickra-core = { workspace = true }
|
2026-06-16 02:01:37 +02:00
|
|
|
wickra-data = { workspace = true, features = ["live-binance"] }
|
2026-05-21 17:50:45 +02:00
|
|
|
pyo3 = { workspace = true }
|
2026-06-17 03:19:50 +02:00
|
|
|
# Reinterprets `&[f64]` as bytes when building stdlib `array.array('d')` results,
|
|
|
|
|
# keeping the binding free of any NumPy runtime dependency.
|
|
|
|
|
bytemuck = "1"
|
2026-06-16 02:01:37 +02:00
|
|
|
# Drives the async Binance feed behind the blocking, GIL-releasing poll.
|
|
|
|
|
tokio = { version = "1", features = ["rt", "net", "time"] }
|