-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (70 loc) · 2.27 KB
/
Cargo.toml
File metadata and controls
74 lines (70 loc) · 2.27 KB
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
68
69
70
71
72
73
74
# This file is part of Astarte.
#
# Copyright 2025, 2026 SECO Mind Srl
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
[workspace]
resolver = "3"
members = [
"astarte-device-fdo",
"astarte-fdo-protocol",
"e2e-test",
]
[workspace.package]
version = "0.1.0-alpha.1"
edition = "2024"
homepage = "https://astarte.cloud/"
license = "Apache-2.0"
repository = "https://github.com/astarte-platform/astarte-device-fdo-rust"
rust-version = "1.85"
[workspace.dependencies]
astarte-device-fdo = { version = "0.1.0-alpha.1", path = "./astarte-device-fdo" }
astarte-fdo-protocol = { version = "0.1.0-alpha.1", path = "./astarte-fdo-protocol" }
aws-lc-rs = "1.15.1"
ciborium = "0.2.2"
coset = "0.4.0"
futures-core = "0.3.31"
futures-util = "0.3.31"
http = "1.4.0"
nix = "0.31.1"
once_cell = "1.21.3"
p256 = { version = "0.13.2", default-features = false }
pin-project-lite = "0.2.16"
rand = { version = "0.9.2", default-features = false }
rcgen = { version = "0.14.5", default-features = false, features = ["crypto", "pem", "aws_lc_rs"] }
reqwest = { version = "0.13.1", default-features = false, features = ["charset", "http2", "system-proxy", "rustls-no-provider"] }
rustc-hash = "2.1.1"
rustls = { version = "0.23.35", default-features = false, features = ["aws-lc-rs", "logging", "std", "prefer-post-quantum", "read_buf", "tls12"] }
serde = "1.0.228"
serde_bytes = "0.11.19"
tokio = { version = "1.48.0", default-features = false }
tokio-test = "0.4.5"
tracing = "0.1.41"
tss-esapi = "7.6.0"
url = "2.5.7"
x509-parser = "0.18.0"
zeroize = "1.8.2"
# Dev
cfg-if = "1.0.4"
clap = "4.5.53"
color-eyre = "0.6.5"
eyre = "0.6.12"
insta = "1.44.1"
mockito = "1.7.1"
pretty_assertions = "1.4.1"
rustls-platform-verifier = "0.6.2"
tracing-subscriber = "0.3.20"
uuid = "1.19.0"
webpki-roots = "1.0.4"