# 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. [package] name = "dynamo-runtime" readme = "README.md" version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true description = "Dynamo Runtime Library" [features] default = [] integration = [] [dependencies] # 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 } humantime = { workspace = true } rand = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } tokio-util = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true } validator = { workspace = true } uuid = { workspace = true } xxhash-rust = { workspace = true } prometheus = { workspace = true } thiserror = { workspace = true } # Dependencies not yet in workspace figment = { version = "0.10.19", features = ["env", "json", "toml", "test"] } log = { version = "0.4" } once_cell = { version = "1" } regex = { version = "1" } socket2 = { version = "0.5.8" } async-once-cell = { version = "0.5.4" } educe = { version = "0.6.0" } etcd-client = { version = "0.14" } 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] assert_matches = { version = "1.5.0" } env_logger = { version = "0.11" } rstest = { version = "0.23.0" } temp-env = { version = "0.3.6" }