~mozillateam/firefox/firefox-trunk.head

« back to all changes in this revision

Viewing changes to debian/build/create-tarball.py

  • Committer: Rico Tzschichholz
  • Date: 2019-03-09 15:51:58 UTC
  • Revision ID: ricotz@ubuntu.com-20190309155158-pvjfyr9s4q6gky0i
Update cbindgen to 0.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
        CheckCall(['cargo', 'new', 'vendored-cbindgen', '--vcs', 'none'])
129
129
        with ScopedWorkingDirectory('vendored-cbindgen'):
130
130
          with open('Cargo.toml', 'a+') as fd:
131
 
            fd.write('cbindgen = "=0.8.1"')
 
131
            fd.write('cbindgen = "=0.8.2"')
132
132
          CheckCall(['cargo', 'vendor'])
133
133
          with ScopedWorkingDirectory('vendor/cbindgen'):
134
134
            os.makedirs('.cargo')