Cargo.toml 2.49 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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.

Ryan Olson's avatar
Ryan Olson committed
16
[package]
Neelay Shah's avatar
Neelay Shah committed
17
name = "dynamo-runtime"
Alec's avatar
Alec committed
18
readme = "README.md"
19
20
21
22
23
24
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
Ryan Olson's avatar
Ryan Olson committed
25

26
27
28
29
[features]
default = []
integration = []

Ryan Olson's avatar
Ryan Olson committed
30
[dependencies]
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
# Use workspace dependencies where available
anyhow = { workspace = true }
async-nats = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
async_zmq = { workspace = true }
blake3 = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true }
derive_builder = { workspace = true }
derive-getters = { workspace = true }
either = { workspace = true }
futures = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
validator = { workspace = true }
uuid = { workspace = true }
xxhash-rust = { workspace = true }
prometheus = { workspace = true }
thiserror = { workspace = true }

# Dependencies not yet in workspace
Ryan Olson's avatar
Ryan Olson committed
57
figment = { version = "0.10.19", features = ["env", "json", "toml", "test"] }
58
humantime = { version = "2.1.0" }
59
log = { version = "0.4" }
60
once_cell = { version = "1" }
Ryan Olson's avatar
Ryan Olson committed
61
regex = { version = "1" }
62
socket2 = { version = "0.5.8" }
63
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "json"] }
Ryan Olson's avatar
Ryan Olson committed
64

65
66
67
async-once-cell = { version = "0.5.4" }
educe = { version = "0.6.0" }
etcd-client = { version = "0.14" }
Ryan Olson's avatar
Ryan Olson committed
68
69
70
71
72
73
74
local-ip-address = { version = "0.6.3" }
nid = { version = "3.0.0", features = ["serde"] }
nix = { version = "0.29", features = ["signal"] }
nuid = { version = "0.5" }
rand = { version = "0.8"}

[dev-dependencies]
75
76
77
78
assert_matches = { version = "1.5.0" }
env_logger = { version = "0.11" }
rstest = { version = "0.23.0" }
temp-env = { version = "0.3.6" }