-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #289 from DaGenix/fixups
Remove all uses of unstable Rust features
- Loading branch information
Showing
29 changed files
with
630 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
[package] | ||
name = "rust-crypto" | ||
version = "0.2.29" | ||
version = "0.2.30" | ||
authors = ["The Rust-Crypto Project Developers"] | ||
license = "MIT/Apache-2.0" | ||
homepage = "https://github.com/DaGenix/rust-crypto/" | ||
repository = "https://github.com/DaGenix/rust-crypto/" | ||
description = "A (mostly) pure-Rust implementation of various common cryptographic algorithms." | ||
keywords = [ "Crypto", "MD5", "Sha1", "Sha2", "AES" ] | ||
readme = "README.md" | ||
build = "build.rs" | ||
|
||
[lib] | ||
name = "crypto" | ||
|
||
[build-dependencies] | ||
gcc = "*" | ||
|
||
[dependencies] | ||
libc = "*" | ||
time = "*" | ||
rand = "*" | ||
rustc-serialize = "*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
extern crate gcc; | ||
|
||
fn main() { | ||
gcc::compile_library( | ||
"lib_rust_crypto_helpers.a", | ||
&["src/util_helpers.c", "src/aesni_helpers.c"]); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.