-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (43 loc) · 1.61 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# Copyright © 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <[email protected]>
#
[workspace]
resolver = "2"
members = [
"zenoh-flow-python-operator-wrapper",
"zenoh-flow-python-sink-wrapper",
"zenoh-flow-python-source-wrapper",
"zenoh-flow-python",
]
[workspace.package]
authors = ["ZettaScale Zenoh Team <[email protected]>"]
categories = ["network-programming"]
description = "Zenoh-Flow: a Zenoh-based data flow programming framework for computations that span from the cloud to the device."
edition = "2021"
homepage = "https://github.com/eclipse-zenoh-flow/zenoh-flow"
license = " EPL-2.0 OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-zenoh-flow/zenoh-flow-python"
version = "0.6.0-dev"
[workspace.dependencies]
anyhow = { version = "1" }
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1"
pyo3 = { version = "0.20", features = ["auto-initialize", "abi3-py38"] }
pyo3-asyncio = { version = "0.20", features = ["attributes", "async-std-runtime"] }
pyo3-pylogger = "0.2"
serde_json = { version = "1.0" }
tracing = "0.1"
tracing-subscriber = "0.3"
zenoh-flow-nodes = { git = "https://github.com/eclipse-zenoh-flow/zenoh-flow.git", branch = "main" }
zenoh-flow-python = { path = "./zenoh-flow-python" }