aboutsummaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Add some docs to the README about the vendored feature.Steven Fackler2018-07-301-0/+15
|
* Find path prefix to OpenSSL installed by Homebrew.eonil2018-05-191-7/+7
|
* Fix minor typoFlorian Gilcher2018-04-051-1/+1
|
* Update versionSteven Fackler2018-01-251-3/+3
|
* Add crates.io badgeBenjamin Gill2017-12-121-1/+1
| | | Make it easier to get to the crates.io page from this repo
* Remove travis badgeSteven Fackler2017-11-201-2/+2
|
* Add instructions for adding OpenSSL DLLs to PATH if needed during installjohnthagen2017-09-281-0/+7
|
* Mention target specific env varsSteven Fackler2017-09-151-2/+7
|
* Update version in READMESteven Fackler2017-08-291-3/+3
|
* Update README.mdSteven Fackler2017-08-111-1/+1
|
* Merge pull request #622 from mcgoo/vcpkgSteven Fackler2017-08-111-2/+23
|\ | | | | try to find openssl libraries in a vcpkg ports tree
| * for msvc abi builds, allow use of openssl libs from vcpkgJim McGrath2017-06-071-2/+23
| |
* | Mention Debian for apt-get instructionsMartin Geisler2017-07-221-1/+1
| | | | | | Since Debian is the upstream for Ubuntu (and many other distributions), I think it makes sense to mention it explicitly.
* | Remove unused importSteven Fackler2017-07-161-1/+0
| |
* | Add badges to READMESteven Fackler2017-07-161-2/+3
|/
* Add pkg-configOussama Gammoudi2017-06-031-1/+1
| | | | | | | error: failed to run custom build command for `openssl-sys v0.9.13` run pkg_config fail: "Failed to run `\"pkg-config\" \"--libs\" \"--cflags\" \"openssl\"`: No such file or directory (os error 2)" Problem encountered on WSL (Ubuntu on windows). Fixed by installing pkg-config
* (maint) Recreate ability to pass in OPENSSL_LIBS variableAndrew Roetker2017-03-131-0/+2
| | | | | | | | | Prior to this commit in 43c951f743e68fac5f45119eda7c994882a1d489 the ability to pass OPENSSL_LIBS was removed from the build.rs of openssl-sys. This commit adds the ability to pass custom names for the OPENSSL_LIBS back in. This is useful for when building openssl across linux and windows with the same lib names (ssl:crypto) and the default names provided by the build script are not valid.
* Fix dangling referenceSteven Fackler2017-02-251-2/+2
|
* License all future contributions properlySteven Fackler2017-02-251-0/+7
|
* Add note about needing pkg-configLeo Tindall2017-02-191-1/+3
| | | I didn't have it and it took me a bit to figure out what the problem was.
* Update 1.1.0 versionSteven Fackler2017-02-161-3/+3
|
* De-quote README lineSteven Fackler2017-02-141-1/+1
|
* complication -> compilationStephan Buys2017-02-081-1/+1
|
* Add MacOS and XCode hintStephan Buys2017-02-081-0/+6
|
* Release v0.9.5v0.9.5Steven Fackler2017-01-031-1/+1
|
* Some readme tweaksSteven Fackler2017-01-011-4/+7
|
* Release v0.9.4v0.9.4Steven Fackler2016-12-231-1/+1
|
* Merge branch 'master' of github.com:sfackler/rust-opensslSteven Fackler2016-12-201-0/+18
|\
| * Explain how to install trusted root certificatesPhilipp Keck2016-12-141-0/+12
| | | | | | The slproweb.com OpenSSL distribution does not contain root certificates, so they need to be downloaded and installed manually to avoid certificate warnings when making requests.
| * Allow OPENSSL_{LIB,INCLUDE}_DIR to override OPENSSL_DIRAidan Hobson Sayers2016-12-121-0/+6
| |
* | Release v0.9.3v0.9.3Steven Fackler2016-12-091-1/+1
| |
* | Switch to docs.rs for docsSteven Fackler2016-12-091-1/+1
|/
* Update README.mdSteven Fackler2016-12-021-1/+1
|
* Release v0.9.2v0.9.2Steven Fackler2016-11-271-1/+1
|
* Release v0.9.1v0.9.1Steven Fackler2016-11-111-4/+4
|
* Don't recommend light version on WindowsSteven Fackler2016-11-081-1/+1
| | | Closes #516
* Release v0.9.0Steven Fackler2016-11-051-1/+1
|
* Mention 0.7 READMESteven Fackler2016-10-311-0/+6
|
* Add support for OpenSSL 1.1.0Alex Crichton2016-10-121-53/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is relatively major refactoring of the `openssl-sys` crate as well as the `openssl` crate itself. The end goal here was to support OpenSSL 1.1.0, and lots of other various tweaks happened along the way. The major new features are: * OpenSSL 1.1.0 is supported * OpenSSL 0.9.8 is no longer supported (aka all OSX users by default) * All FFI bindings are verified with the `ctest` crate (same way as the `libc` crate) * CI matrixes are vastly expanded to include 32/64 of all platforms, more OpenSSL version coverage, as well as ARM coverage on Linux * The `c_helpers` module is completely removed along with the `gcc` dependency. * The `openssl-sys` build script was completely rewritten * Now uses `OPENSSL_DIR` to find the installation, not include/lib env vars. * Better error messages for mismatched versions. * Better error messages for failing to find OpenSSL on a platform (more can be done here) * Probing of OpenSSL build-time configuration to inform the API of the `*-sys` crate. * Many Cargo features have been removed as they're now enabled by default. As this is a breaking change to both the `openssl` and `openssl-sys` crates this will necessitate a major version bump of both. There's still a few more API questions remaining but let's hash that out on a PR! Closes #452
* Release v0.8.3Steven Fackler2016-09-091-1/+1
|
* Add description about how to solve openssl issueAdelar da Silva Queiróz2016-08-291-1/+2
|
* Add cargo clean in the listAdelar da Silva Queiróz2016-08-291-0/+1
|
* Release openssl-sys v0.7.17, openssl v0.8.2Steven Fackler2016-08-181-1/+1
|
* Release openssl-sys v0.7.16, openssl v0.8.1Steven Fackler2016-08-151-1/+1
|
* Release openssl-sys v0.7.15, openssl v0.8.0Steven Fackler2016-08-111-1/+1
|
* Release v0.7.14Steven Fackler2016-07-011-1/+1
|
* Release v0.7.13Steven Fackler2016-05-201-1/+1
|
* Release v0.7.12Steven Fackler2016-05-161-1/+1
|
* Merge pull request #360 from pingzing/masterSteven Fackler2016-05-161-4/+24
|\ | | | | Clarify windows build instructions
| * Fix order of 32- and 64-bit for mingw toolchainpingzing2016-03-141-2/+2
| |