-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (32 loc) · 1.18 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
#
# 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]>
#
[workspace]
resolver = "2"
members = ["zenoh-dissector", "epan-sys"]
[workspace.package]
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
anyhow = "1.0.89"
convert_case = "0.6.0"
env_logger = "0.11.5"
epan-sys = { path = "epan-sys" }
log = "0.4.22"
zenoh-buffers = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
zenoh-codec = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
zenoh-protocol = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
zenoh-transport = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
"transport_compression",
] }