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: src/2025h1/cargo-plumbing.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,12 @@ Currently, Cargo's plumbing commands are
31
31
- deprecated
32
32
-`cargo locate-project`:
33
33
- works off of a `Cargo.toml` file on disk
34
-
- text or json output, undocumened json schema
34
+
- text or json output, undocumented json schema
35
35
- uses a pre-1.0 term for package
36
36
-`cargo metadata`:
37
37
- works off of `Cargo.toml`, `Cargo.lock` files on disk
38
38
- uses a custom json schema
39
-
- can include depednency resolution but excludes feature resolution
39
+
- can include dependency resolution but excludes feature resolution
40
40
- some users want this faster
41
41
- some users want this to report more information
42
42
- See also [open issues](https://github.com/rust-lang/cargo/issues?q=is%3Aissue%20state%3Aopen%20label%3ACommand-metadata)
@@ -93,12 +93,12 @@ Cargo's APIs may not be able to expose each of these stages and work may need to
93
93
94
94
The performance of piping output between these commands may be sub-par, coming from a combination of at least
95
95
- Cargo's APIs may require doing more work than is needed for these stages
96
-
- Cargo focuses on json for programamtic output which may prove sub-par (see also [zulip](https://rust-lang.zulipchat.com/#narrow/channel/246057-t-cargo/topic/.60cargo.20metadata.60.20performance/near/476523460))
96
+
- Cargo focuses on json for programmatic output which may prove sub-par (see also [zulip](https://rust-lang.zulipchat.com/#narrow/channel/246057-t-cargo/topic/.60cargo.20metadata.60.20performance/near/476523460))
97
97
- Cargo's serde structures may not be optimized
98
98
- If customizing only a single step in this process,
99
99
requiring serializing and deserializing through all of the other stages may be superfluous
100
100
101
-
Low hanging or eggregious bottlenecks may need to be addressed.
101
+
Low hanging or egregious bottlenecks may need to be addressed.
102
102
Otherwise, performance should wait on user feedback.
103
103
104
104
A schema evolution plan will need to be considered with the design of the schema.
@@ -157,4 +157,4 @@ Definitions for terms used above:
157
157
* Compiler [Major Change Proposal (MCP)](https://forge.rust-lang.org/compiler/mcp.html) is used to propose a 'larger than average' change and get feedback from the compiler team.
158
158
* Library [API Change Proposal (ACP)](https://std-dev-guide.rust-lang.org/development/feature-lifecycle.html) describes a change to the standard library.
0 commit comments