|
- [package]
- version.workspace = true
- name = "dora-node-api-python"
- edition = "2021"
- documentation.workspace = true
- description.workspace = true
- license.workspace = true
-
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
- [features]
- default = ["tracing", "telemetry"]
- tracing = ["dora-node-api/tracing"]
- telemetry = ["dora-runtime/telemetry"]
-
- [dependencies]
- dora-node-api = { workspace = true }
- dora-operator-api-python = { workspace = true }
- pyo3 = { version = "0.18", features = ["eyre", "abi3-py37"] }
- eyre = "0.6"
- serde_yaml = "0.8.23"
- flume = "0.10.14"
- dora-runtime = { workspace = true, features = ["tracing", "python"] }
- arrow = { version = "35.0.0", features = ["pyarrow"] }
- pythonize = "0.18.0"
- futures = "0.3.28"
-
- [lib]
- name = "dora"
- crate-type = ["cdylib"]
|