forked from eclipse-uprotocol/up-transport-zenoh-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (51 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
################################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
################################################################################
[package]
description = "Zenoh Rust Transport library implementation of the Eclipse uProtocol"
edition = "2021"
include = ["/src/*", "/examples/*", "/Cargo.toml", "/README.md", "/config/*"]
keywords = ["uProtocol", "SDK", "communication", "Zenoh"]
license = "Apache-2.0"
name = "up-transport-zenoh"
readme = "README.md"
repository = "https://github.com/eclipse-uprotocol/up-transport-zenoh-rust"
rust-version = "1.75.0"
version = "0.1.1"
[lints.clippy]
all = "deny"
pedantic = "deny"
#cargo = "deny"
#restriction = "deny"
#nursery = "deny"
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1"
bitmask-enum = "2.2.4"
bytes = "1.6.1"
lazy_static = "1.4.0"
protobuf = { version = "3.3" }
tokio = { version = "1.35.1", default-features = false }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
up-rust = "0.2.0"
zenoh = { version = "=1.0.0-beta.3", features = ["unstable", "internal"] }
[dev-dependencies]
chrono = "0.4.31"
clap = { version = "4.4.11", features = ["derive"] }
test-case = { version = "3.3" }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
[package.metadata.docs.rs]
all-features = true