File tree 3 files changed +27
-0
lines changed
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ struct SerializedPackage<'a> {
29
29
name : & ' a str ,
30
30
version : & ' a str ,
31
31
id : & ' a PackageId ,
32
+ license : Option < & ' a str > ,
33
+ license_file : Option < & ' a str > ,
32
34
source : & ' a SourceId ,
33
35
dependencies : & ' a [ Dependency ] ,
34
36
targets : & ' a [ Target ] ,
@@ -40,11 +42,16 @@ impl Encodable for Package {
40
42
fn encode < S : Encoder > ( & self , s : & mut S ) -> Result < ( ) , S :: Error > {
41
43
let summary = self . manifest . summary ( ) ;
42
44
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) ;
43
48
44
49
SerializedPackage {
45
50
name : & package_id. name ( ) ,
46
51
version : & package_id. version ( ) . to_string ( ) ,
47
52
id : package_id,
53
+ license : license,
54
+ license_file : license_file,
48
55
source : summary. source_id ( ) ,
49
56
dependencies : summary. dependencies ( ) ,
50
57
targets : & self . manifest . targets ( ) ,
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ fn cargo_metadata_simple() {
19
19
"id": "foo[..]",
20
20
"source": null,
21
21
"dependencies": [],
22
+ "license": null,
23
+ "license_file": null,
22
24
"targets": [
23
25
{
24
26
"kind": [
@@ -80,6 +82,8 @@ fn cargo_metadata_with_deps_and_version() {
80
82
"manifest_path": "[..]Cargo.toml",
81
83
"name": "baz",
82
84
"source": "registry+[..]",
85
+ "license": null,
86
+ "license_file": null,
83
87
"targets": [
84
88
{
85
89
"kind": [
@@ -109,6 +113,8 @@ fn cargo_metadata_with_deps_and_version() {
109
113
"manifest_path": "[..]Cargo.toml",
110
114
"name": "bar",
111
115
"source": "registry+[..]",
116
+ "license": null,
117
+ "license_file": null,
112
118
"targets": [
113
119
{
114
120
"kind": [
@@ -138,6 +144,8 @@ fn cargo_metadata_with_deps_and_version() {
138
144
"manifest_path": "[..]Cargo.toml",
139
145
"name": "foo",
140
146
"source": null,
147
+ "license": "MIT",
148
+ "license_file": null,
141
149
"targets": [
142
150
{
143
151
"kind": [
@@ -198,6 +206,8 @@ fn workspace_metadata() {
198
206
"id": "bar[..]",
199
207
"source": null,
200
208
"dependencies": [],
209
+ "license": null,
210
+ "license_file": null,
201
211
"targets": [
202
212
{
203
213
"kind": [ "lib" ],
@@ -214,6 +224,8 @@ fn workspace_metadata() {
214
224
"id": "baz[..]",
215
225
"source": null,
216
226
"dependencies": [],
227
+ "license": null,
228
+ "license_file": null,
217
229
"targets": [
218
230
{
219
231
"kind": [ "lib" ],
@@ -265,6 +277,8 @@ fn workspace_metadata_no_deps() {
265
277
"id": "bar[..]",
266
278
"source": null,
267
279
"dependencies": [],
280
+ "license": null,
281
+ "license_file": null,
268
282
"targets": [
269
283
{
270
284
"kind": [ "lib" ],
@@ -281,6 +295,8 @@ fn workspace_metadata_no_deps() {
281
295
"id": "baz[..]",
282
296
"source": null,
283
297
"dependencies": [],
298
+ "license": null,
299
+ "license_file": null,
284
300
"targets": [
285
301
{
286
302
"kind": [ "lib" ],
@@ -320,6 +336,8 @@ const MANIFEST_OUTPUT: &'static str=
320
336
"id":"foo[..]0.5.0[..](path+file://[..]/foo)",
321
337
"source":null,
322
338
"dependencies":[],
339
+ "license": null,
340
+ "license_file": null,
323
341
"targets":[{
324
342
"kind":["bin"],
325
343
"name":"foo",
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ fn read_manifest_output() -> String {
14
14
"name":"foo",
15
15
"version":"0.5.0",
16
16
"id":"foo[..]0.5.0[..](path+file://[..]/foo)",
17
+ "license": null,
18
+ "license_file": null,
17
19
"source":null,
18
20
"dependencies":[],
19
21
"targets":[{
You can’t perform that action at this time.
0 commit comments