|
| 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