aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 0.2v0.2.0Steven Fackler2014-11-271-35/+3
| | | | | | | | Also removed the PNaCl support. It hasn't worked anyway in a while since the pnacl-libressl-sys library doesn't have any of the FFI bindings and makes openssl's Cargo.toml a mess. This is a minor version bump since Hasher's API changed
* Fix windows dependenciesSteven Fackler2014-11-271-2/+2
|
* Add openssl-sys dependency on windowsSteven Fackler2014-11-271-0/+6
|
* Bump to 0.1.1v0.1.1Steven Fackler2014-11-261-9/+9
|
* Bump to 0.1.0v0.1.0Steven Fackler2014-11-251-9/+9
|
* Add more crate metadatav0.0.2Steven Fackler2014-11-221-1/+5
|
* Update stuff for upload to registrySteven Fackler2014-11-221-7/+10
|
* Add license and descriptionSteven Fackler2014-11-211-8/+10
|
* Move AES XTS support to a featureSteven Fackler2014-11-161-0/+1
|
* New build systemValerii Hiora2014-11-131-14/+13
|
* Bump to 0.0.1Steven Fackler2014-11-111-1/+1
|
* Support PNaCl/NaCl.Richard Diamond2014-11-091-8/+9
|
* Add overrideable platform ssl.Richard Diamond2014-11-081-0/+21
|
* BN_is_zero as a Rust functionValerii Hiora2014-10-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although wrapping was relatively easy it basically meant that we depend on C compilation which becomes nightmare as soon as multiple platforms are used. I’ve got a huge pain once iOS was involved with 3 device archs and 2 simulator arches to support, not mentioning different set of include and lib flags. So there are 2 different approaches: - continue this way, maintaining all compilation issues like like managing correct flags, providing correct paths and so on. This way our Makefile will grow extremely fast and will actually take more efforts to maintain. - doing it pure Rust way. In this case we provide all the macros expansions inside our wrappers and there should be no other way to access raw data other than through those wrappers. It might be fragile if OpenSSL internal data structures will ever change, but I think (or hope) it is pretty stable and wouldn’t change anytime soon. This PR eliminates `BN_is_zero` at all from public API. It’s functionality is implemented in `BigNum.is_zero` and should be enough. Additional notes: 1. I’ve moved BIGNUM into `bn` so it could access fields directly and keep it as an opaque structure for everyone else 2. I’ve kept empty Makefile as I hope to land `feature-matrix` branch soon and I don’t like merging deleted/added file conflicts.
* Add a dummy bn_is_zero C dependency to wrap BN_is_zeroJonathan Reem2014-10-041-0/+1
| | | | | | | | | This is necessary because on some architectures BN_is_zero is a CPP macro, so trying to link against it in an `extern "C"` block causes a linker error. This also introduces a build command to Cargo to compile the bn_is_zero wrapper.
* TLS 1_1, 1_2, Ssl 2 is enabled by featuresValerii Hiora2014-09-231-0/+5
|
* cargo updateSteven Fackler2014-08-161-1/+1
|
* Shift directory structureSteven Fackler2014-08-031-1/+1
|
* Drop to version 0.0.0Steven Fackler2014-06-251-1/+1
|
* Add a Cargo.toml configurationAlex Crichton2014-06-251-0/+10