You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cargo-pgrx/src/command/install.rs
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,7 @@ pub(crate) struct Install {
57
57
pub(crate)features: clap_cargo::Features,
58
58
#[clap(long)]
59
59
pub(crate)target:Option<String>,
60
-
/// Extra flag forwarded verbatim to every `cargo` invocation (repeatable).
61
-
/// e.g. `--cargo=--config=child/.cargo/config.toml --cargo=--offline`
60
+
/// Extra cargo flags forwarded to every `cargo` invocation. Repeatable and split on whitespace: `--cargo=--config=foo` or `--cargo "--offline --frozen"`.
Copy file name to clipboardExpand all lines: cargo-pgrx/src/command/run.rs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,7 @@ pub(crate) struct Run {
56
56
install_only:bool,
57
57
#[clap(long)]
58
58
valgrind:bool,
59
-
/// Extra flag forwarded verbatim to every `cargo` invocation (repeatable).
60
-
/// e.g. `--cargo=--config=child/.cargo/config.toml --cargo=--offline`
59
+
/// Extra cargo flags forwarded to every `cargo` invocation. Repeatable and split on whitespace: `--cargo=--config=foo` or `--cargo "--offline --frozen"`.
Copy file name to clipboardExpand all lines: cargo-pgrx/src/command/test.rs
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,8 +49,7 @@ pub(crate) struct Test {
49
49
pgdata:Option<PathBuf>,
50
50
#[clap(flatten)]
51
51
features: clap_cargo::Features,
52
-
/// Extra flag forwarded verbatim to every `cargo` invocation (repeatable).
53
-
/// e.g. `--cargo=--config=child/.cargo/config.toml --cargo=--offline`
52
+
/// Extra cargo flags forwarded to every `cargo` invocation. Repeatable and split on whitespace: `--cargo=--config=foo` or `--cargo "--offline --frozen"`.
0 commit comments