-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"crates/core",
"crates/adaptive",
"crates/cli",
# Language Bindings
"crates/python",
"crates/ffi",
"crates/node",
"crates/wasm"
]
exclude = [".tmp", ".uv-cache"]
resolver = "2"
[workspace.package]
version = "0.4.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/NVIDIA/NeMo-Relay"
[workspace.dependencies]
nemo-relay = { version = "0.4.0", path = "crates/core", default-features = false }
nemo-relay-adaptive = { version = "0.4.0", path = "crates/adaptive" }
nemo-relay-ffi = { version = "0.4.0", path = "crates/ffi" }
nemo-relay-cli = { version = "0.4.0", path = "crates/cli" }
uuid = "=1.18.1"
[workspace.lints.rust]
missing_docs = "deny"