-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
58 lines (54 loc) · 1.82 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
58
################################################################################
# Copyright (c) 2024 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
################################################################################
[workspace]
resolver = "2"
members = [
"up-transport-vsomeip",
"vsomeip-sys",
]
[workspace.package]
documentation = "https://github.com/eclipse-uprotocol/up-spec#readme"
edition = "2021"
exclude = [
"tests/*",
"tools/*",
".devcontainer/*",
".vscode/*",
".github/*",
".gitignore",
]
keywords = ["uProtocol", "SDK", "vsomeip", "SOMEIP"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust"
rust-version = "1.76"
version = "0.2.0"
[workspace.dependencies]
async-trait = { version = "0.1" }
bimap = { version = "0.6.3" }
bytes = { version = "1.5" }
crossbeam-channel = { version = "0.5.13" }
cxx = { version = "1.0" }
lazy_static = { version = "1.4.0" }
log = { version = "0.4.21", features = [] }
once_cell = { version = "1.19.0" }
protobuf = { version = "3.4.0" }
regex = { version = "1.10" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread", "macros", "sync", "time", "tracing"] }
up-rust = { version = "0.2.0" }
vsomeip-proc-macro = { path = "vsomeip-proc-macro" }
vsomeip-sys = { path = "vsomeip-sys", default-features = false }
[workspace.dev-dependencies]
test-case = { version = "3.3" }