forked from eclipse-zenoh/zenoh-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump version to
0.11.0-dev-101-g1f4ec1a
- Loading branch information
1 parent
1f4ec1a
commit b18c033
Showing
1 changed file
with
29 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,49 @@ | ||
# | ||
# | ||
# Copyright (c) 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]> | ||
# | ||
# | ||
[package] | ||
name = "zenoh-python" | ||
version = "0.11.0-dev" | ||
authors = [ | ||
"kydos <[email protected]>", | ||
"Julien Enoch <[email protected]>", | ||
"Olivier Hécart <[email protected]>", | ||
"Luca Cominardi <[email protected]>", | ||
"Pierre Avital <[email protected]>", | ||
] | ||
version = "0.11.0-dev-101-g1f4ec1a" | ||
authors = [ "kydos <[email protected]>", "Julien Enoch <[email protected]>", "Olivier Hécart <[email protected]>", "Luca Cominardi <[email protected]>", "Pierre Avital <[email protected]>" ] | ||
edition = "2021" | ||
license = "EPL-2.0 OR Apache-2.0" | ||
categories = ["network-programming"] | ||
categories = [ "network-programming" ] | ||
description = "The Zenoh Python API" | ||
readme = "README.md" | ||
|
||
[lib] | ||
name = "zenoh" | ||
crate-type = ["cdylib"] | ||
crate-type = [ "cdylib" ] | ||
|
||
[features] | ||
complete_n = ["zenoh/complete_n"] | ||
default = ["zenoh/default"] | ||
complete_n = [ "zenoh/complete_n" ] | ||
default = [ "zenoh/default" ] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
[badges.maintenance] | ||
status = "actively-developed" | ||
|
||
[dependencies] | ||
env_logger = "0.11.3" | ||
flume = "0.11.0" | ||
json5 = "0.4.1" | ||
pyo3 = { version = "0.21.1", features = ["extension-module", "abi3-py37"] } | ||
uhlc = "0.6.0" | ||
validated_struct = "2.1.0" | ||
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = ["unstable"], default-features = false } | ||
zenoh-buffers = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" } | ||
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" } | ||
|
||
[dependencies.pyo3] | ||
version = "0.21.1" | ||
features = [ "extension-module", "abi3-py37" ] | ||
|
||
[dependencies.zenoh] | ||
version = "0.11.0-dev" | ||
git = "https://github.com/eclipse-zenoh/zenoh.git" | ||
branch = "main" | ||
features = [ "unstable" ] | ||
default-features = false | ||
|
||
[dependencies.zenoh-buffers] | ||
version = "0.11.0-dev" | ||
git = "https://github.com/eclipse-zenoh/zenoh.git" | ||
branch = "main" | ||
|
||
[dependencies.zenoh-core] | ||
version = "0.11.0-dev" | ||
git = "https://github.com/eclipse-zenoh/zenoh.git" | ||
branch = "main" |