]> git.proxmox.com Git - cargo.git/blob - debian/changelog
Don't set RUSTFLAGS in d/rules. (Closes: #914110)
[cargo.git] / debian / changelog
1 cargo (0.31.0-4) UNRELEASED; urgency=medium
2
3 * Don't set RUSTFLAGS in d/rules. (Closes: #914110)
4
5 -- Ximin Luo <infinity0@debian.org> Mon, 19 Nov 2018 22:49:08 -0800
6
7 cargo (0.31.0-3) unstable; urgency=medium
8
9 * Tweak the cargo wrapper script to be more robust.
10
11 -- Ximin Luo <infinity0@debian.org> Fri, 09 Nov 2018 02:56:54 -0800
12
13 cargo (0.31.0-2) unstable; urgency=medium
14
15 * Fix test failure on some architectures due to hash ordering.
16 * Bump libgit2 dependency version constraint. (Closes: #899038)
17
18 -- Ximin Luo <infinity0@debian.org> Sun, 04 Nov 2018 11:32:26 -0800
19
20 cargo (0.31.0-1) unstable; urgency=medium
21
22 * Don't run tests when doing arch-indep build.
23 * Fix package include/exclude tests.
24
25 -- Ximin Luo <infinity0@debian.org> Sun, 04 Nov 2018 10:10:24 -0800
26
27 cargo (0.31.0-1~exp1) experimental; urgency=medium
28
29 * New upstream release.
30 * Simplify build scripts and add a Debian wrapper for cargo.
31
32 -- Ximin Luo <infinity0@debian.org> Sun, 04 Nov 2018 03:50:33 -0800
33
34 cargo (0.30.0-1) unstable; urgency=medium
35
36 * Upload to unstable.
37
38 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 21 Oct 2018 11:59:11 +0530
39
40 cargo (0.30.0-1~exp1) experimental; urgency=medium
41
42 [ upstream ]
43 * Cargo can silently fix some bad lockfiles You can use --locked to
44 disable this behaviour.
45 * cargo-install will now allow you to cross compile an install using
46 --target.
47 * Added the cargo-fix subcommand to automatically move project code from
48 2015 edition to 2018.
49
50 [ Vasudev Kamath ]
51 * Refresh patch 2004 for new release.
52 * Add openssl crates fuzz,test doc and apps file to unsuspicious list.
53 * debian/patches:
54 + Drop patch 0774e97da3894f07ed5b6f7db175027a9bc4718b.patch for adding
55 cross compile support. Its merged upstream.
56 + Refresh patch 2001 to newer version of libgit2-sys.
57 + Refresh patch 2003 to newer version of libssh2-sys.
58 + Drop patch 1001 which is merged upstream.
59 + Refresh patch 2005 and 2007 to remove fuzz.
60 + Refresh patch 2002 with newer release.
61 * debian/control:
62 + Mark package compliance with Debian policy 4.2.1.
63 * Update copyright information for new release.
64 * debian/rules:
65 + Use DEB_BUILD_OPTIONS to disable tests on powerpc and powerpcspe
66 architecture.
67 Closes: bug#908961, Thanks to Helmut Grohne.
68
69 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 07 Oct 2018 10:39:49 +0530
70
71 cargo (0.29.0-1) unstable; urgency=medium
72
73 * Merge changes of 0.28.0-2, which was missed in first release of 0.29.0
74 * Upload to unstable.
75 * Refresh patch for `install --target` feature for release 0.29.0
76
77 -- Vasudev Kamath <vasudev@copyninja.info> Mon, 13 Aug 2018 20:37:13 +0530
78
79 cargo (0.29.0-1~exp1) experimental; urgency=medium
80 [ upstream ]
81 * Cargo will now no longer allow you to publish crates with build
82 scripts that modify the src directory. The src directory in a crate
83 should be considered to be immutable.
84
85 [ Vasudev Kamath ]
86 * Update unsuspicious text for new release 0.29.0
87 * Change pattern for embedded zlib
88 * debian/patches:
89 + Refresh patches 2001, 2002, 2003, 2004 to work with new release and
90 new vendor files.
91 + Add patch 1001 to fix deprecated warnings on usage of "casues" from
92 failure crate,
93 * Update copyright information for new release.
94 * Make package compliant with policy 4.2.0.
95
96 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 12 Aug 2018 22:25:42 +0530
97
98 cargo (0.28.0-2) unstable; urgency=medium
99
100 * Re-add `install --target` functionality, needed by dh-cargo.
101
102 -- Ximin Luo <infinity0@debian.org> Sun, 12 Aug 2018 00:15:23 -0700
103
104 cargo (0.28.0-1) unstable; urgency=medium
105
106 * Upload to unstable
107
108 -- Vasudev Kamath <vasudev@copyninja.info> Tue, 07 Aug 2018 22:14:46 +0530
109
110 cargo (0.28.0-1~exp3) experimental; urgency=medium
111
112 * Disable incremental compilation tests on sparc64 architecture.
113 Closes: bug#905623, Thanks to John Paul Adrian Glaubitz.
114
115 -- Vasudev Kamath <vasudev@copyninja.info> Tue, 07 Aug 2018 22:01:31 +0530
116
117 cargo (0.28.0-1~exp2) experimental; urgency=medium
118
119 * Add patch 2005 to disable fetch_platform_specific_dependencies unit
120 tests. Upstream issue #5864.
121
122 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 05 Aug 2018 17:17:00 +0530
123
124 cargo (0.28.0-1~exp1) experimental; urgency=medium
125
126 [ upstream ]
127 * cargo-metadata now includes authors, categories, keywords, readme, and
128 repository fields.
129 * cargo-metadata now includes a package's metadata table.
130 * Added the --target-dir optional argument. This allows you to specify a
131 different directory than target for placing compilation artifacts.
132 * Cargo will be adding automatic target inference for binaries,
133 benchmarks, examples, and tests in the Rust 2018 edition. If your
134 project specifies specific targets e.g. using [[bin]] and have other
135 binaries in locations where cargo would infer a binary, Cargo will
136 produce a warning. You can disable this feature ahead of time by
137 setting any of the following autobins, autobenches, autoexamples,
138 autotests to false.
139 * Cargo will now cache compiler information. This can be disabled by
140 setting CARGO_CACHE_RUSTC_INFO=0 in your environment.
141
142 [ Sylvestre Ledru ]
143 * Update of the alioth ML address.
144
145 [ Vasudev Kamath ]
146 * Update README.source to mention preferred way of upload.
147 * Update unsuspicious files for new release.
148 * debian/patches:
149 + Refresh patch 2007 for new release.
150 + Refresh patch 2001 for new version of libgit2-sys
151 + Drop patch 2008 as its merged upstream.
152 + Add patch 2003 for forcing use of libssh2 from system, which was now
153 controlled by environment variable.
154 * debian/copyright:
155 + Update copyright information for new release.
156 * Mark package compliance with Debian Policy 4.1.5.
157
158 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 29 Jul 2018 22:07:36 +0530
159
160 cargo (0.27.0-2) unstable; urgency=medium
161
162 * Support cross-compile install (upstream PR #5614).
163
164 -- Ximin Luo <infinity0@debian.org> Wed, 06 Jun 2018 22:35:30 -0700
165
166 cargo (0.27.0-1) unstable; urgency=medium
167
168 * Upload to unstable.
169
170 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 03 Jun 2018 20:42:13 +0530
171
172 cargo (0.27.0-1~exp1) experimental; urgency=medium
173
174 [ upstream ]
175 * Cargo will now output path to custom commands when -v is passed with
176 --list.
177 * Cargo binary version is now same as the Rust version.
178 * Cargo.lock files are now included in published crates.
179
180 [ Vasudev Kamath ]
181 * Update patch 2004 for the new release.
182 * Add files from clap and vec_map to unsuspicious list.
183 * debian/patches:
184 + Update path to libgit2-sys in patch 2001.
185 + Adjust file name and paths to test files to be patched in patch
186 2002.
187 + Drop all unused imports and comment out functions not just drop
188 #[test] in patch 2002.
189 + Drop patch 1001 as its now part of new cargo release.
190 + Refresh patch 2007.
191 * debian/copyright:
192 + Update copyright information for new vendored crates.
193
194 -- Vasudev Kamath <vasudev@copyninja.info> Sat, 02 Jun 2018 15:10:38 +0530
195
196 cargo (0.26.0-1) unstable; urgency=medium
197
198 * Upload to unstable.
199
200 -- Vasudev Kamath <vasudev@copyninja.info> Tue, 01 May 2018 13:02:05 +0530
201
202 cargo (0.26.0-1~exp1) experimental; urgency=medium
203
204 [upstream]
205 * cargo new now defaults to create binary crate instead of library
206 crate.
207 * cargo new will no longer name crates with name starting with rust- or
208 ending with -rs.
209 * cargo doc is faster as it uses cargo check instead of full rebuild.
210
211 [Vasudev Kamath]
212 * Refresh the patch 2004 against newer Cargo.toml
213 * Mark package compliance with Debian Policy 4.1.4
214 * debian/patches:
215 + Drop patch 2003 and 2005, the doc should be built from source using
216 mdbook.
217 + Drop patch 2006, the wasm32 related test seems to be dropped
218 upstream.
219 + Drop patch 1002, merged upstream.
220 + Add tests/generate_lock_file.rs to patch 2002 to disable
221 no_index_update test, this tries to access network.
222 + Refresh patch 1001 with new upstream release.
223 * debian/rules: disable execution of src/ci/dox.sh, this script is no
224 longer present in new release.
225 * debian/copyright:
226 + Add copyright for humantime crate.
227 + Add copyright for lazycell crate.
228 + Add copyright for quick-error crate
229 + Add copyright for proc-macro2 crate.
230
231 -- Vasudev Kamath <vasudev@copyninja.info> Sat, 21 Apr 2018 20:59:39 +0530
232
233 cargo (0.25.0-3) unstable; urgency=medium
234
235 [ Ximin Luo ]
236 * Update Vcs-* fields to salsa
237
238 [ Vasudev Kamath ]
239 * Add patch to prevent incremental builds on sparc64.
240 Closes: bug#895300, Thanks to John Paul Adrian Glaubitz.
241
242 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 15 Apr 2018 12:28:29 +0530
243
244 cargo (0.25.0-2) unstable; urgency=medium
245
246 [ Ximin Luo ]
247 * Depend on rustc 1.24 or later.
248 * Backport a patch to not require dev-dependencies when not needed.
249
250 -- Vasudev Kamath <vasudev@copyninja.info> Thu, 22 Mar 2018 20:08:17 +0530
251
252 cargo (0.25.0-1) unstable; urgency=medium
253
254 * Upload to unstable.
255
256 -- Vasudev Kamath <vasudev@copyninja.info> Fri, 09 Mar 2018 21:09:38 +0530
257
258 cargo (0.25.0-1~exp2) experimental; urgency=medium
259
260 * Disable test running on powerpc and powerpcspe for now. Will be
261 enabled once issue in test suites are fixed.
262 Request from John Paul Adrian Glaubitz in IRC.
263
264 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 25 Feb 2018 10:27:23 +0530
265
266 cargo (0.25.0-1~exp1) experimental; urgency=medium
267
268 [upstream]
269 * Added a workspace.default-members config that overrides implied --all
270 in virtual workspaces.
271 * Enable incremental by default on development builds.
272
273 [ Vasudev Kamath ]
274 * debian/vendor-tarball-filter.txt: Filter out git test data from
275 libgit2-sys crate.
276 * debian/vendor-tarball-unsusupiciousAudit unsuspicious files for 0.25.0
277 release.
278 * debian/make_orig_multi.sh: Make sure we take filter and unsuspiciaus
279 texts from debian folder.
280 * debian/patches:
281 + Drop patch 0001 it is merged upstream.
282 + Fix the typo in description of patch 2006.
283 * Drop source/lintian-override. README under patches directory is no
284 longer considered as a patch file by lintian.
285 * debian/copyright:
286 + Drop unused vendor crates copyright information.
287 + Add new crates copyright information to copyright.
288
289 -- Vasudev Kamath <vasudev@copyninja.info> Sat, 24 Feb 2018 14:43:48 +0530
290
291 cargo (0.24.0-1) unstable; urgency=medium
292
293 * Upload to unstable.
294
295 -- Ximin Luo <infinity0@debian.org> Sat, 27 Jan 2018 10:41:06 +0100
296
297 cargo (0.24.0-1~exp1) experimental; urgency=medium
298
299 [upstream]
300 * Supports uninstallation of multiple crates.
301 * `cargo check` unit testing.
302 * Install a specific version using `cargo install --version`
303
304 [ Vasudev Kamath ]
305 * Update vendor-tarball-unsuspicious.txt vendor-tarball-filter.txt for
306 new upstream release.
307 * debian/control:
308 + Mark package compliance with Debian Policy 4.1.3.
309 * debian/patches:
310 + Update patch 2001 to work with libgit2-sys-0.6.19.
311 + Update 1002 patch to drop url crate specific hunk as its merged
312 upstream.
313 + Add patch 0001 to fix bad_git_dependency test failure.
314 * debian/copyright:
315 + Add new vendor crates to copyright.
316 + Track rustfmt.toml in top level copyright section.
317 * Add lintian-override for ignoring README from
318 patch-file-present-but-not-mentioned-in-series tag.
319
320 -- Vasudev Kamath <vasudev@copyninja.info> Thu, 25 Jan 2018 14:57:43 +0530
321
322 cargo (0.23.0-1) unstable; urgency=medium
323
324 * Upload to unstable.
325 * Mark package as compliant with Debian Policy 4.1.2.
326 No change required to source.
327
328 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 10 Dec 2017 15:33:55 +0530
329
330 cargo (0.23.0-1~exp1) experimental; urgency=medium
331
332 * [upstream]
333 + Cargo will now build multi file examples in subdirectories of the
334 examples folder that have a main.rs file.
335 + Changed [root] to [package] in Cargo.lock. Old format packages will
336 continue to work and can be updated using cargo update.
337 + Supports vendoring git repositories.
338 * Refresh patch 2004 for new release.
339 * Audit logo.svg file from termion crate.
340 * debian/patches:
341 + Drop patch 1001, its merged upstream.
342 + Refresh patch 2002 with new upstream changes.
343 + Refresh patch 2001 with newer libgit2-sys changes.
344 + Add patch 2005 to prevent executing non-existing mdbook command
345 during build.
346 + Move part of typo fix for url crate to patch 1001 to 1002. url crate
347 is not updated in new cargo release.
348 * debian/copyright:
349 + Remove copyright for gcc crate.
350 + Add copyright information for cc, commoncrypto, crypto-hash,
351 redox_syscall. redox_termios and termion crate.
352 + Add CONTRIBUTING.md to top Files section.
353 + Drop magnet-sys from copyright.
354
355
356 -- Vasudev Kamath <vasudev@copyninja.info> Tue, 05 Dec 2017 22:03:49 +0530
357
358 cargo (0.22.0-1~exp1) experimental; urgency=medium
359
360 * New upstream release.
361 + Can now install multiple crates with cargo install.
362 + cargo commands inside a virtual workspace will now implicitly pass
363 --all.
364 + Added [patch] section to Cargo.toml to handle prepublication
365 dependencies RFC 1969.
366 + include and exclude fields in Cargo.toml now accept gitignore like
367 patterns.
368 + Added --all-target option.
369 + Using required dependencies as a feature is now deprecated and emits
370 a warning.
371 * Put upstream PR url for patch 1001.
372 * Add conv crate file to unsuspicious files.
373 * debian/patches:
374 + Refresh patches 1001, 2002 and 2004 with new upstream release.
375 + Fix typo in cargo search command and related tests.
376 * debian/control:
377 + Mark package compliance with Debian Policy 4.1.1.
378 + Mark priority for package as optional from extra. Priority extra is
379 deprecated from Debian Policy 4.0.1.
380 * debian/copyright:
381 + Add newly added vendor copyright information.
382
383 -- Vasudev Kamath <vasudev@copyninja.info> Sun, 29 Oct 2017 19:50:42 +0530
384
385 cargo (0.21.1-2) unstable; urgency=medium
386
387 * Upload to unstable.
388
389 -- Ximin Luo <infinity0@debian.org> Wed, 25 Oct 2017 23:30:46 +0200
390
391 cargo (0.21.1-1) experimental; urgency=medium
392
393 * debian/control:
394 + Add myself as uploader for cargo package.
395 + Mark package compliance with Debian Policy 4.1.0.
396 * Mark tables.rs from unicode-normalization as unsuspicious.
397 * Ignore sublime workspace file from hex crate.
398 * debian/copyright:
399 + Drop wildcards representing the old crates under vendor folder.
400 + Add copyright information for newer crates under vendor
401 + Add ARCHITECTURE.* to copyright.
402 * debian/patches:
403 + Rename patches to follow patch naming guidelines mentioned in
404 debian/patches/README.
405 + Add patch 1001 to fix spelling errors in cargo output messages.
406 + Make patch 2003 DEP-3 compliant.
407 + Adjust make_orig_multi.sh to renamed clean-cargo-deps.patch
408
409 -- Vasudev Kamath <vasudev@copyninja.info> Sat, 23 Sep 2017 10:41:07 +0530
410
411 cargo (0.20.0-2) unstable; urgency=medium
412
413 * Work around #865549, fixes FTBFS on ppc64el.
414
415 -- Ximin Luo <infinity0@debian.org> Thu, 14 Sep 2017 15:47:55 +0200
416
417 cargo (0.20.0-1) unstable; urgency=medium
418
419 * New upstream release.
420 * Fix cross-compiling declarations, Multi-Arch: foreign => allowed
421 * Un-embed libgit2 0.25.1 again. (Closes: #860990)
422 * Update to latest Standards-Version; no changes required.
423
424 -- Ximin Luo <infinity0@debian.org> Thu, 24 Aug 2017 19:13:00 +0200
425
426 cargo (0.17.0-2) unstable; urgency=medium
427
428 * Re-embed libgit2 0.25.1 due to the Debian testing freeze. It will be
429 removed again after the freeze is over, when libgit2 0.25.1 can again
430 enter Debian unstable.
431
432 -- Ximin Luo <infinity0@debian.org> Wed, 03 May 2017 16:56:03 +0200
433
434 cargo (0.17.0-1) unstable; urgency=medium
435
436 * Upload to unstable so we have something to build rustc 1.17.0 with.
437
438 -- Ximin Luo <infinity0@debian.org> Wed, 03 May 2017 11:24:08 +0200
439
440 cargo (0.17.0-1~exp3) experimental; urgency=medium
441
442 * Add git to Build-Depends to fix FTBFS.
443 * Mention cross-compiling in the previous changelog entry.
444
445 -- Ximin Luo <infinity0@debian.org> Tue, 02 May 2017 13:18:53 +0200
446
447 cargo (0.17.0-1~exp2) experimental; urgency=medium
448
449 * Bring in some changes from Ubuntu.
450 - Rename deps/ to vendor/ as that's what upstream uses, and update
451 other files with the new paths too.
452 - Remove cargo-vendor-unpack since we no longer need to postprocess
453 cargo-vendor output in that way.
454 * Document that bootstrap.py probably doesn't work now.
455 * Include /usr/share/rustc/architecture.mk in d/rules instead of duplicating
456 awkward arch-dependent Makefile snippets.
457 * Don't embed libgit2, add a versioned B-D to libgit2-dev.
458 * Add support for cross-compiling bootstrap.
459
460 -- Ximin Luo <infinity0@debian.org> Mon, 01 May 2017 20:49:45 +0200
461
462 cargo (0.17.0-1~exp1) experimental; urgency=medium
463
464 * New upstream release. (Closes: #851089, #859312)
465
466 -- Ximin Luo <infinity0@debian.org> Thu, 20 Apr 2017 03:16:04 +0200
467
468 cargo (0.15.0~dev-1) unstable; urgency=medium
469
470 * New upstream snapshot (git 1877f59d6b2cb057f7ef6c6b34b926fd96a683c1)
471 - Compatible with OpenSSL 1.1.0 (Closes: #828259)
472 * rules: use new link-arg options (Closes: #834980, #837433)
473 - Requires rustc >= 1.13
474
475 -- Luca Bruno <lucab@debian.org> Fri, 25 Nov 2016 23:30:03 +0000
476
477 cargo (0.11.0-2) unstable; urgency=high
478
479 * debian/rules: fix RUSTFLAGS quoting (Closes: #834980)
480
481 -- Luca Bruno <lucab@debian.org> Sun, 21 Aug 2016 18:21:21 +0000
482
483 cargo (0.11.0-1) unstable; urgency=medium
484
485 [ Daniele Tricoli ]
486 * New upstream release. (Closes: #826938)
487 - Update deps tarball.
488 - Refresh patches.
489 - Drop clean-win-crates.patch since time crate is not a dependency
490 anymore.
491 - Drop deps-url-fix-toml.patch since merged upstream.
492
493 [ Luca Bruno ]
494 * Install subcommand manpages too
495 * Move to a bootstrapped (stage1) build by default
496
497 -- Luca Bruno <lucab@debian.org> Mon, 15 Aug 2016 13:59:04 +0000
498
499 cargo (0.9.0-1) unstable; urgency=medium
500
501 * New upstream version
502 + Fix deprecation errors (Closes: #822178, #823652)
503 + Updated deps tarball
504 + Refreshed patches
505
506 -- Luca Bruno <lucab@debian.org> Sat, 07 May 2016 17:56:28 +0200
507
508 cargo (0.8.0-2) unstable; urgency=low
509
510 * Prefer libcurl4-gnutls-dev for building (Closes: #819831)
511
512 -- Luca Bruno <lucab@debian.org> Tue, 05 Apr 2016 22:23:44 +0200
513
514 cargo (0.8.0-1) unstable; urgency=medium
515
516 * New upstream version 0.8.0
517 + Updated deps tarball
518 + Refreshed patches
519 * cargo: removed unused lintian overrides
520
521 -- Luca Bruno <lucab@debian.org> Sat, 05 Mar 2016 22:39:06 +0100
522
523 cargo (0.7.0-2) unstable; urgency=medium
524
525 * Bump standards version
526 * cargo:
527 + add a new stage2 profile
528 + preserve original Cargo.lock for clean
529 + clean environment to allow multiple builds
530 * cargo-doc:
531 + update docbase paths after package split
532 + do not reference remote jquery
533 + do not build under nodoc profile
534 * control: update build-deps for build-profiles
535
536 -- Luca Bruno <lucab@debian.org> Thu, 03 Mar 2016 22:18:32 +0100
537
538 cargo (0.7.0-1) unstable; urgency=medium
539
540 * New upstream version 0.7.0
541 + Updated deps tarball and repack filter
542 + Refreshed patches
543 * Fixes to debian packaging
544 + Updated deps repack script
545 + index packing: use the same TAR format as cargo
546 + rules: ask cargo to build verbosely
547 * Update README.source to match current packaging
548
549 -- Luca Bruno <lucab@debian.org> Sun, 14 Feb 2016 16:12:55 +0100
550
551 cargo (0.6.0-2) unstable; urgency=medium
552
553 * Introduce a cargo-doc package
554 * Fails to build when wget is installed. Force curl
555 (Closes: #809298)
556 * Add the missing VCS- fields
557
558 -- Sylvestre Ledru <sylvestre@debian.org> Tue, 26 Jan 2016 13:01:16 +0100
559
560 cargo (0.6.0-1) unstable; urgency=medium
561
562 * New upstream version 0.6.0
563 + Updated deps tarball
564 + Not shipping a registry index anymore
565 * Refreshed bootstrap.py script
566 + Skip optional dependencies in stage0
567 * Added some crude pack/unpack helpers
568 * copyright: cleaned up unused entries
569 * rules: major update for new 0.6.0 bootstrap
570
571 -- Luca Bruno <lucab@debian.org> Fri, 04 Dec 2015 00:42:55 +0100
572
573 cargo (0.3.0-2) unstable; urgency=medium
574
575 * Fix install target, removing arch-specific path
576
577 -- Luca Bruno <lucab@debian.org> Sat, 14 Nov 2015 19:46:57 +0100
578
579 cargo (0.3.0-1) unstable; urgency=medium
580
581 * Team upload.
582 * First upload to unstable.
583 * Update gbp.conf according to git repo structure.
584 * patches: downgrade missing_docs lints to simple warnings
585 to avoid build failures on newer rustc.
586
587 -- Luca Bruno <lucab@debian.org> Sat, 14 Nov 2015 17:29:15 +0100
588
589 cargo (0.3.0-0~exp1) experimental; urgency=low
590
591 * Team upload.
592 * Initial Debian release. (Closes: #786432)
593
594 -- Luca Bruno <lucab@debian.org> Tue, 11 Aug 2015 20:15:54 +0200