Cargo.toml 581 Bytes
Newer Older
1
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Ryan Olson's avatar
Ryan Olson committed
2
3
# SPDX-License-Identifier: Apache-2.0

4
5
6
7
[workspace]
members = [
    "hello_world",
    "service_metrics",
8
    "system_metrics",
9
]
10
resolver = "3"
Ryan Olson's avatar
Ryan Olson committed
11

12
[workspace.package]
13
version = "1.0.0"
14
edition = "2024"
15
16
17
18
authors = ["NVIDIA"]
license = "Apache-2.0"
homepage = "https://github.com/ai-dynamo/dynamo"
repository = "https://github.com/ai-dynamo/dynamo.git"
Ryan Olson's avatar
Ryan Olson committed
19

20
21
22

[workspace.dependencies]
# local or crates.io
23
anyhow = "1"
24
dynamo-runtime = { path = "../" }
25
prometheus = { version = "0.14" }