-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.94 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (52 loc) · 1.94 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"crates/core",
"crates/types",
"crates/plugin",
"crates/worker-proto",
"crates/worker",
"crates/adaptive",
"crates/pii-redaction",
"crates/cli",
# Language Bindings
"crates/python",
"crates/ffi",
"crates/node"
]
exclude = [".tmp", ".uv-cache"]
resolver = "2"
[workspace.package]
version = "0.9.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/NVIDIA/NeMo-Relay"
[workspace.dependencies]
nemo-relay = { version = "0.9.0", path = "crates/core", default-features = false }
nemo-relay-types = { version = "0.9.0", path = "crates/types" }
nemo-relay-plugin = { version = "0.9.0", path = "crates/plugin" }
nemo-relay-worker-proto = { version = "0.9.0", path = "crates/worker-proto" }
nemo-relay-worker = { version = "0.9.0", path = "crates/worker" }
nemo-relay-adaptive = { version = "0.9.0", path = "crates/adaptive" }
nemo-relay-pii-redaction = { version = "0.9.0", path = "crates/pii-redaction" }
nemo-relay-ffi = { version = "0.9.0", path = "crates/ffi" }
nemo-relay-cli = { version = "0.9.0", path = "crates/cli" }
opentelemetry = { version = "0.32", default-features = false }
opentelemetry-semantic-conventions = { version = "0.32.1", default-features = false, features = ["semconv_experimental"] }
opentelemetry_sdk = { version = "0.32.1", default-features = false }
uuid = "=1.18.1"
[workspace.lints.rust]
missing_docs = "deny"
[workspace.lints.clippy]
cognitive_complexity = "deny"
# Release artifacts are distributed in Python wheels, split Node.js packages,
# and as standalone CLI binaries. Thin LTO with size optimization is the first
# profile that keeps symbols and panic unwinding while meeting the distribution
# size budget.
[profile.release]
opt-level = "s"
lto = "thin"
codegen-units = 1
strip = "debuginfo"
panic = "unwind"