-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 1.08 KB
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
33
34
35
36
# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"crates/core",
"crates/adaptive",
"crates/pii-redaction",
"crates/cli",
# Language Bindings
"crates/python",
"crates/ffi",
"crates/node",
"crates/wasm"
]
exclude = [".tmp", ".uv-cache"]
resolver = "2"
[workspace.package]
version = "0.5.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/NVIDIA/NeMo-Relay"
[workspace.dependencies]
nemo-relay = { version = "0.5.0", path = "crates/core", default-features = false }
nemo-relay-adaptive = { version = "0.5.0", path = "crates/adaptive" }
nemo-relay-pii-redaction = { version = "0.5.0", path = "crates/pii-redaction" }
nemo-relay-ffi = { version = "0.5.0", path = "crates/ffi" }
nemo-relay-cli = { version = "0.5.0", path = "crates/cli" }
opentelemetry = { version = "0.31", default-features = false }
opentelemetry_sdk = { version = "0.31", default-features = false }
uuid = "=1.18.1"
[workspace.lints.rust]
missing_docs = "deny"