Cargo.toml 2.48 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
25
description = "Dynamo Runtime Library"
Ryan Olson's avatar
Ryan Olson committed
26

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

Ryan Olson's avatar
Ryan Olson committed
31
[dependencies]
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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 }
45
humantime = { workspace = true }
46
prometheus = { workspace = true }
47
rand = { workspace = true }
48
49
50
51
52
53
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
54
tracing-subscriber = { workspace = true }
55
thiserror = { workspace = true }
56
uuid = { workspace = true }
57
58
url = { workspace = true }
validator = { workspace = true }
59
xxhash-rust = { workspace = true }
Ryan Olson's avatar
Ryan Olson committed
60

61
62
63
async-once-cell = { version = "0.5.4" }
educe = { version = "0.6.0" }
etcd-client = { version = "0.14" }
64
figment = { version = "0.10.19", features = ["env", "json", "toml", "test"] }
Ryan Olson's avatar
Ryan Olson committed
65
local-ip-address = { version = "0.6.3" }
66
log = { version = "0.4" }
Ryan Olson's avatar
Ryan Olson committed
67
68
69
nid = { version = "3.0.0", features = ["serde"] }
nix = { version = "0.29", features = ["signal"] }
nuid = { version = "0.5" }
70
71
72
once_cell = { version = "1" }
regex = { version = "1" }
socket2 = { version = "0.5.8" }
Ryan Olson's avatar
Ryan Olson committed
73
74

[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" }