-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump /zenoh.*/ dependencies to
0.11.0-dev-210-g0926dd36
- Loading branch information
1 parent
6a6cd33
commit 9d3119c
Showing
4 changed files
with
463 additions
and
261 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
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,75 +1,129 @@ | ||
# | ||
# Copyright (c) 2023 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] | ||
rust-version = { workspace = true } | ||
name = "zenoh-plugin-rest" | ||
version = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
categories = ["network-programming", "web-programming::http-server"] | ||
categories = [ "network-programming", "web-programming::http-server" ] | ||
description = "The zenoh REST plugin" | ||
|
||
[package.rust-version] | ||
workspace = true | ||
|
||
[package.version] | ||
workspace = true | ||
|
||
[package.repository] | ||
workspace = true | ||
|
||
[package.homepage] | ||
workspace = true | ||
|
||
[package.authors] | ||
workspace = true | ||
|
||
[package.edition] | ||
workspace = true | ||
|
||
[package.license] | ||
workspace = true | ||
|
||
[package.metadata] | ||
[package.metadata.deb] | ||
name = "zenoh-plugin-rest" | ||
maintainer = "[email protected]" | ||
copyright = "2024 ZettaScale Technology" | ||
section = "net" | ||
license-file = [ "../../LICENSE", "0" ] | ||
depends = "zenohd (=0.11.0-dev-210-g0926dd36)" | ||
|
||
[features] | ||
default = ["no_mangle", "zenoh/default"] | ||
default = [ "no_mangle", "zenoh/default" ] | ||
no_mangle = [] | ||
|
||
[lib] | ||
name = "zenoh_plugin_rest" | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = [ "cdylib", "rlib" ] | ||
|
||
[dependencies] | ||
anyhow = { workspace = true, features = ["default"] } | ||
async-std = { workspace = true, features = ["default", "attributes"] } | ||
base64 = { workspace = true } | ||
const_format = { workspace = true } | ||
env_logger = { workspace = true } | ||
flume = { workspace = true } | ||
futures = { workspace = true } | ||
git-version = { workspace = true } | ||
http-types = { workspace = true } | ||
lazy_static = { workspace = true } | ||
log = { workspace = true } | ||
schemars = { workspace = true } | ||
serde = { workspace = true, features = ["default"] } | ||
serde_json = { workspace = true } | ||
tide = { workspace = true } | ||
zenoh = { workspace = true, features = ["unstable"] } | ||
zenoh-plugin-trait = { workspace = true } | ||
zenoh-result = { workspace = true } | ||
zenoh-util = { workspace = true } | ||
[dependencies.anyhow] | ||
workspace = true | ||
features = [ "default" ] | ||
|
||
[dependencies.async-std] | ||
workspace = true | ||
features = [ "default", "attributes" ] | ||
|
||
[dependencies.base64] | ||
workspace = true | ||
|
||
[dependencies.const_format] | ||
workspace = true | ||
|
||
[dependencies.env_logger] | ||
workspace = true | ||
|
||
[dependencies.flume] | ||
workspace = true | ||
|
||
[dependencies.futures] | ||
workspace = true | ||
|
||
[dependencies.git-version] | ||
workspace = true | ||
|
||
[dependencies.http-types] | ||
workspace = true | ||
|
||
[dependencies.lazy_static] | ||
workspace = true | ||
|
||
[dependencies.log] | ||
workspace = true | ||
|
||
[dependencies.schemars] | ||
workspace = true | ||
|
||
[dependencies.serde] | ||
workspace = true | ||
features = [ "default" ] | ||
|
||
[dependencies.serde_json] | ||
workspace = true | ||
|
||
[dependencies.tide] | ||
workspace = true | ||
|
||
[dependencies.zenoh] | ||
workspace = true | ||
features = [ "unstable" ] | ||
|
||
[dependencies.zenoh-plugin-trait] | ||
workspace = true | ||
|
||
[dependencies.zenoh-result] | ||
workspace = true | ||
|
||
[dependencies.zenoh-util] | ||
workspace = true | ||
|
||
[build-dependencies] | ||
rustc_version = { workspace = true } | ||
schemars = { workspace = true } | ||
serde = { workspace = true, features = ["default"] } | ||
serde_json = { workspace = true } | ||
jsonschema = { workspace = true } | ||
[build-dependencies.rustc_version] | ||
workspace = true | ||
|
||
[build-dependencies.schemars] | ||
workspace = true | ||
|
||
[build-dependencies.serde] | ||
workspace = true | ||
features = [ "default" ] | ||
|
||
[build-dependencies.serde_json] | ||
workspace = true | ||
|
||
[build-dependencies.jsonschema] | ||
workspace = true | ||
|
||
[dev-dependencies] | ||
clap = { workspace = true } | ||
[dev-dependencies.clap] | ||
workspace = true | ||
|
||
[[example]] | ||
name = "z_serve_sse" | ||
path = "examples/z_serve_sse.rs" | ||
|
||
[package.metadata.deb] | ||
name = "zenoh-plugin-rest" | ||
maintainer = "[email protected]" | ||
copyright = "2024 ZettaScale Technology" | ||
section = "net" | ||
license-file = ["../../LICENSE", "0"] | ||
depends = "zenohd (=0.11.0-dev-1)" | ||
path = "examples/z_serve_sse.rs" |
Oops, something went wrong.