Skip to content

Commit b9ec2b1

Browse files
committed
Add some docs about JSON messages
1 parent 1e15d0a commit b9ec2b1

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

src/doc/header.html

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ <h1>CARGO</h1>
3939
<li><a href='pkgid-spec.html'>Package ID specs</a></li>
4040
<li><a href='environment-variables.html'>Environment Variables</a></li>
4141
<li><a href='source-replacement.html'>Source Replacement</a></li>
42+
<li><a href='machine-readable-output.html'>Machine readable output</a></li>
4243
<li><a href='policies.html'>Policies</a></li>
4344
</ul>
4445
</div>

src/doc/machine-readable-output.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
% Machine readable output.
2+
3+
Cargo can output information about project and build in JSON format.
4+
5+
# Information about project structure
6+
7+
You can use `cargo metadata` command to get information about project structure
8+
and dependencies. The output of the command looks like this:
9+
10+
```
11+
{
12+
// Integer version number of the format.
13+
"version": integer,
14+
15+
// List of packages for this workspace, including dependencies.
16+
"packages": [
17+
{
18+
// Opaque package identifier.
19+
"id": PackageId,
20+
21+
"name": string,
22+
23+
"version": string,
24+
25+
"source": SourceId,
26+
27+
// A list of declared dependencies, see `resolve` field for actual dependencies.
28+
"dependencies": [ Dependency ],
29+
30+
"targets: [ Target ],
31+
32+
// Path to Cargo.toml
33+
"manifest_path": string,
34+
}
35+
],
36+
37+
"workspace_members": [ PackageId ],
38+
39+
// Dependencies graph.
40+
"resolve": {
41+
"nodes": [
42+
{
43+
"id": PackageId,
44+
"dependencies": [ PackageId ]
45+
}
46+
]
47+
}
48+
}
49+
```
50+
51+
52+
# Compiler errors
53+
54+
If you supply `--message-format json` to commands like `cargo build`, Cargo
55+
reports compilation errors and warnings in JSON format. Messages go to the
56+
standard output. Each message occupies exactly one line and does not contain
57+
internal `\n` symbols, so it is possible to process messages one by one
58+
without waiting for the whole build to finish.
59+
60+
The message format looks like this:
61+
62+
```
63+
{
64+
// Type of the message.
65+
"reason": "compiler-message",
66+
67+
// Unique opaque identifier of compiled package.
68+
"package_id": PackageId,
69+
70+
// Unique specification of a particular target within the package.
71+
"target": Target,
72+
73+
// The error message from the compiler in JSON format.
74+
"message": {...}
75+
}
76+
```
77+
78+
Package and target specification are the same that `cargo metadata` uses.

0 commit comments

Comments
 (0)