[package]
name = "perspective-python"
version = "3.0.0-alpha.1"
edition = "2021"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
repository = "https://github.com/finos/perspective"
license = "Apache-2.0"
homepage = "https://perspective.finos.org"
authors = ["Andrew Stein <steinlink@gmail.com>"]
keywords = []
build = "build.rs"
include = [
"bench/**/*",
"build.rs",
"Cargo.toml",
"package.json",
"perspective/**/*",
"pyproject.toml",
"src/**/*",
"docs/**/*",
]
[features]
default = []
external-cpp = [
"perspective-server/external-cpp",
"perspective-client/external-proto",
]
[lib]
name = "perspective_python"
crate-type = ["cdylib"]
[build-dependencies]
pyo3-build-config = "0.20.2"
python-config-rs = "0.1.2"
[dependencies]
perspective-client = { version = "3.0.0-alpha.1", path = "../perspective-client" }
perspective-server = { version = "3.0.0-alpha.1", path = "../perspective-server" }
extend = "1.1.2"
futures = "0.3.28"
pyo3 = { version = "0.20", features = ["extension-module", "serde"] }
pyo3-asyncio = { version = "0.20", features = ["attributes", "tokio-runtime"] }
pythonize = "0.20"
tracing = { version = ">=0.1.36" }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }