-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build updates for arm * add travis * readme update * always enable rust crypto on travis for now
- Loading branch information
1 parent
eaa7ab2
commit 581e505
Showing
8 changed files
with
152 additions
and
49 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
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,30 @@ | ||
language: rust | ||
rust: | ||
- stable | ||
- nightly | ||
arch: | ||
- amd64 | ||
- arm64 | ||
jobs: | ||
allow_failures: | ||
- rust: nightly | ||
fast_finish: true | ||
include: | ||
- name: Aarch64 | ||
os: linux | ||
arch: arm64 | ||
dist: bionic | ||
- name: Linux | ||
os: linux | ||
- name: MacOS (xcode12) | ||
os: osx | ||
osx_image: xcode12 | ||
# - name: Windows (vs2017) | ||
# os: windows | ||
script: | ||
- cd evercrypt-sys | ||
- cargo build --verbose | ||
- cargo test --verbose | ||
- cd ../evercrypt-rs | ||
- cargo build --verbose --features rust-crypto-aes | ||
- cargo test --verbose --features rust-crypto-aes |
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,6 +1,6 @@ | ||
[package] | ||
name = "evercrypt" | ||
version = "0.0.2" | ||
version = "0.0.3-dev" | ||
authors = ["Franziskus Kiefer <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
|
@@ -20,11 +20,14 @@ force-rust-crypto-aes = ["rust-crypto-aes"] | |
random = ["rand", "rand_core"] | ||
|
||
[dependencies] | ||
evercrypt-sys = { path = "../evercrypt-sys", version = "0.0.2" } | ||
evercrypt-sys = { version = "0.0.3-dev" } | ||
aes-gcm = { version = "0.6", optional = true } | ||
rand = { version = "0.7", optional = true } | ||
rand_core = { version = "0.5", optional = true } | ||
|
||
[patch.crates-io] | ||
evercrypt-sys = { path = "../evercrypt-sys" } | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0" | ||
serde = {version = "1.0", features = ["derive"]} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "evercrypt-sys" | ||
version = "0.0.2" | ||
version = "0.0.3-dev" | ||
authors = ["Franziskus Kiefer <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
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
Submodule hacl-star
updated
from f475aa to f9773b