forked from eclipse-zenoh/zenoh
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
42 lines (38 loc) · 1.23 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
#
# Copyright (c) 2024 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 = "valgrind-check"
version = "0.1.0"
repository = "https://github.com/eclipse-zenoh/zenoh"
homepage = "http://zenoh.io"
license = "EPL-2.0 OR Apache-2.0"
edition = "2021"
categories = ["network-programming"]
description = "Internal crate for zenoh."
[dependencies]
base64ct = "=1.6.0"
zerofrom = "=0.1.5"
litemap = "=0.7.4"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "time", "io-std"] }
zenoh = { path = "../../zenoh/" }
zenoh-runtime = { path = "../../commons/zenoh-runtime/" }
zenoh-util = { path = "../../commons/zenoh-util/", features = ["test"] }
[[bin]]
name = "pub_sub"
path = "src/pub_sub/bin/z_pub_sub.rs"
[[bin]]
name = "queryable_get"
path = "src/queryable_get/bin/z_queryable_get.rs"
[package.metadata.cargo-machete]
ignored = ["base64ct", "zerofrom", "litemap"]