Skip to content

Commit 5992f6d

Browse files
committed
chore: remove Limited Preview from package description
As `agent_control` is our main package in this repository, I think we should consider revisiting the workspace manifest to see if we want to have a [root package](https://doc.rust-lang.org/cargo/reference/workspaces.html#root-package) or keep this a [virtual workspace](https://doc.rust-lang.org/cargo/reference/workspaces.html#virtual-workspace)
1 parent 333780d commit 5992f6d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ edition = "2024"
99
publish = false
1010
rust-version = "1.89.0"
1111
license-file = "./LICENSE.md"
12+
repository = "https://github.com/newrelic/newrelic-agent-control"
1213

1314
[workspace.dependencies]
1415
serde_json = "1.0.145"
@@ -20,7 +21,7 @@ regex = "1.12.2"
2021
mockall = "0.13.1"
2122
clap = "4.5.50"
2223
nix = "0.30.1"
23-
tracing-subscriber = { version = "0.3.20", features = [ "json" ] }
24+
tracing-subscriber = { version = "0.3.20", features = ["json"] }
2425
tracing-test = "0.2.5"
2526
assert_cmd = "2.0.17"
2627
assert_matches = "1.5.0"

agent-control/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "newrelic_agent_control"
3-
description = "New Relic Agent Control Limited Preview"
3+
description = "New Relic Agent Control"
44
version = "1.2.0"
55
authors.workspace = true
66
edition.workspace = true
@@ -105,11 +105,12 @@ glob = "0.3.3"
105105
name = "newrelic-agent-control-k8s"
106106
path = "src/bin/main_k8s.rs"
107107

108-
[[bin]] # on-host binary
108+
# On-host binary
109109
# Due to a GoReleaser limitation, the generated binary here must have the same name as the final
110110
# name we want to use in the generated and packaged assets.
111111
# As our K8s build is more manual and does not have this problem, we can name the on-host binary
112112
# just `newrelic-agent-control` while the K8s one is kept as `newrelic-agent-control-k8s`.
113+
[[bin]]
113114
name = "newrelic-agent-control"
114115
path = "src/bin/main_onhost.rs"
115116

0 commit comments

Comments
 (0)