[package]
edition = "2024"
rust-version = "1.88"
name = "wingfoil-python"
version = "8.0.0"
authors = ["wingfoil@wingfoil.io"]
build = false
publish = [
"wingfoil",
"crates-io",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "python bindings for wingfoil - graph based stream processing framework"
homepage = "https://github.com/wingfoil-io/wingfoil/tree/main/wingfoil-python"
documentation = "https://docs.rs/wingfoil-python"
readme = "README.md"
keywords = [
"graph",
"stream",
"dag",
"trading",
"python",
]
license = "Apache-2.0"
[package.metadata.maturin]
name = "wingfoil"
[features]
aeron = ["wingfoil/aeron"]
default = ["etcd"]
etcd = ["wingfoil/etcd"]
iceoryx2 = ["wingfoil/iceoryx2"]
[lib]
name = "wingfoil"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.derive_more]
version = "2.1"
features = ["full"]
[dependencies.env_logger]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.kdb-plus-fixed]
version = "0.5.0"
features = ["ipc"]
[dependencies.log]
version = "0.4"
[dependencies.pyo3]
version = "0.29"
features = [
"extension-module",
"serde",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.wingfoil]
version = "8.0.0"
features = [
"csv",
"kdb",
"zmq",
"etcd",
"fluvio",
"prometheus",
"otlp",
"fix",
"web",
"kafka",
"redis",
"postgres",
"augurs",
]
[target."cfg(windows)".dependencies.openssl]
version = "0.10"
features = ["vendored"]
[target."cfg(windows)".dependencies.rdkafka]
version = "0.37"
features = ["cmake-build"]
[lints.clippy]
needless_doctest_main = "allow"
type_complexity = "allow"
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"