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
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
46
humantime = { workspace = true }
rand = { workspace = true }
47
48
49
50
51
52
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
53
tracing-subscriber = { workspace = true }
54
55
56
57
58
59
60
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
61
figment = { version = "0.10.19", features = ["env", "json", "toml", "test"] }
62
log = { version = "0.4" }
63
once_cell = { version = "1" }
Ryan Olson's avatar
Ryan Olson committed
64
regex = { version = "1" }
65
socket2 = { version = "0.5.8" }
Ryan Olson's avatar
Ryan Olson committed
66

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

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