Skip to content

Commit 85d09d0

Browse files
committed
cargo: add license and license_file to cargo metadata output
1 parent 9399229 commit 85d09d0

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

src/cargo/core/package.rs

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ struct SerializedPackage<'a> {
2929
name: &'a str,
3030
version: &'a str,
3131
id: &'a PackageId,
32+
license: Option<&'a str>,
33+
license_file: Option<&'a str>,
3234
source: &'a SourceId,
3335
dependencies: &'a [Dependency],
3436
targets: &'a [Target],
@@ -40,11 +42,16 @@ impl Encodable for Package {
4042
fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
4143
let summary = self.manifest.summary();
4244
let package_id = summary.package_id();
45+
let manmeta = self.manifest.metadata();
46+
let license = manmeta.license.as_ref().map(String::as_ref);
47+
let license_file = manmeta.license_file.as_ref().map(String::as_ref);
4348

4449
SerializedPackage {
4550
name: &package_id.name(),
4651
version: &package_id.version().to_string(),
4752
id: package_id,
53+
license: license,
54+
license_file: license_file,
4855
source: summary.source_id(),
4956
dependencies: summary.dependencies(),
5057
targets: &self.manifest.targets(),

tests/metadata.rs

+18
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ fn cargo_metadata_simple() {
1919
"id": "foo[..]",
2020
"source": null,
2121
"dependencies": [],
22+
"license": null,
23+
"license_file": null,
2224
"targets": [
2325
{
2426
"kind": [
@@ -80,6 +82,8 @@ fn cargo_metadata_with_deps_and_version() {
8082
"manifest_path": "[..]Cargo.toml",
8183
"name": "baz",
8284
"source": "registry+[..]",
85+
"license": null,
86+
"license_file": null,
8387
"targets": [
8488
{
8589
"kind": [
@@ -109,6 +113,8 @@ fn cargo_metadata_with_deps_and_version() {
109113
"manifest_path": "[..]Cargo.toml",
110114
"name": "bar",
111115
"source": "registry+[..]",
116+
"license": null,
117+
"license_file": null,
112118
"targets": [
113119
{
114120
"kind": [
@@ -138,6 +144,8 @@ fn cargo_metadata_with_deps_and_version() {
138144
"manifest_path": "[..]Cargo.toml",
139145
"name": "foo",
140146
"source": null,
147+
"license": "MIT",
148+
"license_file": null,
141149
"targets": [
142150
{
143151
"kind": [
@@ -198,6 +206,8 @@ fn workspace_metadata() {
198206
"id": "bar[..]",
199207
"source": null,
200208
"dependencies": [],
209+
"license": null,
210+
"license_file": null,
201211
"targets": [
202212
{
203213
"kind": [ "lib" ],
@@ -214,6 +224,8 @@ fn workspace_metadata() {
214224
"id": "baz[..]",
215225
"source": null,
216226
"dependencies": [],
227+
"license": null,
228+
"license_file": null,
217229
"targets": [
218230
{
219231
"kind": [ "lib" ],
@@ -265,6 +277,8 @@ fn workspace_metadata_no_deps() {
265277
"id": "bar[..]",
266278
"source": null,
267279
"dependencies": [],
280+
"license": null,
281+
"license_file": null,
268282
"targets": [
269283
{
270284
"kind": [ "lib" ],
@@ -281,6 +295,8 @@ fn workspace_metadata_no_deps() {
281295
"id": "baz[..]",
282296
"source": null,
283297
"dependencies": [],
298+
"license": null,
299+
"license_file": null,
284300
"targets": [
285301
{
286302
"kind": [ "lib" ],
@@ -320,6 +336,8 @@ const MANIFEST_OUTPUT: &'static str=
320336
"id":"foo[..]0.5.0[..](path+file://[..]/foo)",
321337
"source":null,
322338
"dependencies":[],
339+
"license": null,
340+
"license_file": null,
323341
"targets":[{
324342
"kind":["bin"],
325343
"name":"foo",

tests/read-manifest.rs

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ fn read_manifest_output() -> String {
1414
"name":"foo",
1515
"version":"0.5.0",
1616
"id":"foo[..]0.5.0[..](path+file://[..]/foo)",
17+
"license": null,
18+
"license_file": null,
1719
"source":null,
1820
"dependencies":[],
1921
"targets":[{

0 commit comments

Comments
 (0)