mirror of
https://github.com/qwjyh/xdbm
synced 2025-04-20 19:55:49 +09:00
feat: add option to statically link openssl (#22)
* feat: add feature to statically link openssl and libgit2 * update CHANGELOG * update CHANGELOG
This commit is contained in:
parent
bd8e2019fe
commit
e3b1e77f7d
3 changed files with 14 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- `sync` subcommand, which performs git pull (fast-forward) and push (#21)
|
- `sync` subcommand, which performs git pull (fast-forward) and push (#21)
|
||||||
|
- Feature `vendored-openssl` to statically link openssl and libgit2 (#22)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Git local config is now looked up. (#20)
|
- Git local config is now looked up. (#20)
|
||||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -1037,6 +1037,15 @@ version = "0.1.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "openssl-src"
|
||||||
|
version = "300.4.2+3.4.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "168ce4e058f975fe43e89d9ccf78ca668601887ae736090aacc23ae353c298e2"
|
||||||
|
dependencies = [
|
||||||
|
"cc",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "openssl-sys"
|
name = "openssl-sys"
|
||||||
version = "0.9.104"
|
version = "0.9.104"
|
||||||
|
@ -1045,6 +1054,7 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"libc",
|
"libc",
|
||||||
|
"openssl-src",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
"vcpkg",
|
"vcpkg",
|
||||||
]
|
]
|
||||||
|
|
|
@ -36,3 +36,6 @@ console = "0.15"
|
||||||
assert_cmd = "2.0.16"
|
assert_cmd = "2.0.16"
|
||||||
assert_fs = "1.1.2"
|
assert_fs = "1.1.2"
|
||||||
predicates = "3.1.2"
|
predicates = "3.1.2"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
vendored-openssl = ["git2/vendored-openssl"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue