forked from eclipse-ibeji/freyja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (63 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# SPDX-License-Identifier: MIT
[workspace]
# The default resolver for workspaces is different than for regular packages, so use v2 to avoid warnings
resolver = "2"
members = [
"build_common",
"cloud_adapters/in_memory_mock_cloud_adapter",
"common",
"contracts",
"digital_twin_adapters/in_memory_mock_digital_twin_adapter",
"digital_twin_adapters/mock_digital_twin_adapter",
"freyja",
"mapping_clients/in_memory_mock_mapping_client",
"mapping_clients/mock_mapping_service_client",
"mocks/mock_digital_twin",
"mocks/mock_mapping_service",
"proc_macros",
"provider_proxies/grpc/v1",
"provider_proxies/http_mock_provider_proxy",
"provider_proxies/in_memory_mock_provider_proxy",
"provider_proxy_selector",
]
[workspace.dependencies]
# Freyja dependencies
freyja-build-common = { path = "build_common" }
freyja-common = { path = "common" }
freyja-contracts = { path = "contracts" }
mock-digital-twin = { path = "mocks/mock_digital_twin" }
proc-macros = { path = "proc_macros" }
provider-proxy-selector = { path = "provider_proxy_selector" }
# Other SDV projects. Versioning is handled by the Cargo.lock file
core-protobuf-data-access = { git = "https://github.com/eclipse-ibeji/ibeji" }
samples-protobuf-data-access = { git = "https://github.com/eclipse-ibeji/ibeji" }
service_discovery_proto = { git = "https://github.com/eclipse-chariott/chariott" }
# crates.io dependencies
async-trait = "0.1.74"
axum = "0.6.12"
config = "0.13.3"
convert_case = "0.6.0"
crossbeam = "0.8.2"
env_logger = "0.10.0"
futures = "0.3.29"
home = "0.5.5"
log = "^0.4"
mockall = "0.11.4"
paho-mqtt = "0.12"
proc-macro2 = "1.0.69"
quote = "1.0.23"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
strum = "0.25.0"
strum_macros = "0.25.3"
syn = { version = "2.0.39", features = ["extra-traits", "full"] }
tempfile = "3.8.1"
time = "0.3.30"
tokio = { version = "1.34", features = ["macros", "rt-multi-thread", "time", "sync", "test-util"] }
tokio-stream = { version = "0.1.8", features = ["net"] }
tonic = "0.10.0"
tonic-build = "0.10.0"
tower = { version = "0.4", features = ["util"] }