File tree 3 files changed +2
-3
lines changed
crate_universe/src/context 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ genrule(
82
82
exclude = ["workspace/target/**" ],
83
83
),
84
84
outs = ["workspace_subcrate_cargo_output" ],
85
- cmd = "RUSTC=$(location //tools/upstream_wrapper:rustc) $(location //tools/upstream_wrapper:cargo) run --manifest-path=cargo/cargo_toml_variable_extractor/testdata/workspace/subcrate/Cargo.toml > $@" ,
85
+ cmd = "RUSTC=$(location //tools/upstream_wrapper:rustc) $(location //tools/upstream_wrapper:cargo) run --quiet -- manifest-path=cargo/cargo_toml_variable_extractor/testdata/workspace/subcrate/Cargo.toml > $@" ,
86
86
tools = [
87
87
"//rust/toolchain:current_rust_stdlib_files" ,
88
88
"//tools/upstream_wrapper:cargo" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ authors = { workspace = true }
4
4
description = { workspace = true }
5
5
homepage = { workspace = true }
6
6
license = { workspace = true }
7
- license-file = { workspace = true }
8
7
readme = { workspace = true }
9
8
repository = { workspace = true }
10
9
rust-version = { workspace = true }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pub struct CrateDependency {
28
28
pub alias : Option < String > ,
29
29
30
30
/// Local path of this dependency if provided. This captures local paths from both the
31
- /// [dependencies] table and the [patches] table so they can be used in rendering.
31
+ /// ` [dependencies]` table and the ` [patches]` table so they can be used in rendering.
32
32
#[ serde( default , skip_serializing_if = "Option::is_none" ) ]
33
33
pub ( crate ) local_path : Option < Utf8PathBuf > ,
34
34
}
You can’t perform that action at this time.
0 commit comments