diff options
author | Teddy Wing | 2020-10-03 18:24:56 +0200 |
---|---|---|
committer | Teddy Wing | 2020-10-03 18:24:56 +0200 |
commit | da94442fae40736859787575b65720382c1f231c (patch) | |
tree | 078a8f8748c2f307493ea46af0734ed39673d49c /Cargo.lock | |
parent | 90969d5e9defcd593c7acc416247cd7a6b04e532 (diff) | |
download | git-todo-da94442fae40736859787575b65720382c1f231c.tar.bz2 |
Build for release and configure static linkingv0.0.1
Set up a release build and distribution packaging. Configure static
linking for 'openssl' and 'libgit2'.
Based on or copied from code from 'git-suggestion'.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -155,6 +155,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" [[package]] +name = "openssl-src" +version = "111.11.0+1.1.1h" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "380fe324132bea01f45239fadfec9343adb044615f29930d039bec1ae7b9fa5b" +dependencies = [ + "cc", +] + +[[package]] name = "openssl-sys" version = "0.9.58" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -163,6 +172,7 @@ dependencies = [ "autocfg", "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] |