Browse Source
Merge pull request #1160 from eduardosm/vendored_openssl
Add `vendored_openssl` feature.
pull/1170/head
Daniel García
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
12 additions and
0 deletions
-
Cargo.lock
-
Cargo.toml
|
|
@ -1552,6 +1552,15 @@ version = "0.1.2" |
|
|
|
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" |
|
|
@ -1561,6 +1570,7 @@ dependencies = [ |
|
|
|
"autocfg 1.0.1", |
|
|
|
"cc", |
|
|
|
"libc", |
|
|
|
"openssl-src", |
|
|
|
"pkg-config", |
|
|
|
"vcpkg", |
|
|
|
] |
|
|
|
|
|
@ -16,6 +16,8 @@ enable_syslog = [] |
|
|
|
mysql = ["diesel/mysql", "diesel_migrations/mysql"] |
|
|
|
postgresql = ["diesel/postgres", "diesel_migrations/postgres"] |
|
|
|
sqlite = ["diesel/sqlite", "diesel_migrations/sqlite", "libsqlite3-sys"] |
|
|
|
# Enable to use a vendored and statically linked openssl |
|
|
|
vendored_openssl = ["openssl/vendored"] |
|
|
|
|
|
|
|
# Enable unstable features, requires nightly |
|
|
|
# Currently only used to enable rusts official ip support |
|
|
|