Skip to content

Commit

Permalink
Merge pull request #80 from ionut-arm/vbump
Browse files Browse the repository at this point in the history
Bump version and minor changes
  • Loading branch information
ionut-arm authored Mar 17, 2021
2 parents 4da203b + a98f88d commit be5a9f5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

<p align="center">
<a href="https://github.com/parallaxsecond/rust-psa-crypto/actions?query=workflow%3A%22Continuous+Integration%22"><img src="https://github.com/parallaxsecond/rust-psa-crypto/workflows/Continuous%20Integration/badge.svg" alt="CI tests"/></a>
<a href="https://travis-ci.com/parallaxsecond/rust-psa-crypto"><img src="https://travis-ci.com/parallaxsecond/rust-psa-crypto.svg?branch=master" alt="Travis CI tests"/></a>
</p>

This repository contains a Rust wrapper around the [PSA Cryptography API](https://developer.arm.com/architectures/security-architectures/platform-security-architecture/documentation). There are two layers of wrapping:
Expand Down
7 changes: 2 additions & 5 deletions psa-crypto-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
[package]
name = "psa-crypto-sys"
version = "0.7.0"
authors = ["Edmund Grimley Evans <edmund.grimley-evans@arm.com>",
"Paul Howard <paul.howard@arm.com>",
"Ionut Mihalcea <ionut.mihalcea@arm.com>",
"Hugues de Valon <hugues.devalon@arm.com>"]
version = "0.8.0"
authors = ["Parsec Project Contributors"]
edition = "2018"
description = "Wrapper around the PSA Cryptography API"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion psa-crypto-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ interface to Rust.
<a href="https://crates.io/crates/psa-crypto-sys"><img alt="Crates.io" src="https://img.shields.io/crates/v/psa-crypto-sys"></a>
<a href="https://docs.rs/psa-crypto-sys"><img src="https://docs.rs/psa-crypto-sys/badge.svg" alt="Code documentation"/></a>
<a href="https://github.com/parallaxsecond/rust-psa-crypto/actions?query=workflow%3A%22Continuous+Integration%22"><img src="https://github.com/parallaxsecond/rust-psa-crypto/workflows/Continuous%20Integration/badge.svg" alt="CI tests"/></a>
<a href="https://travis-ci.com/parallaxsecond/rust-psa-crypto"><img src="https://travis-ci.com/parallaxsecond/rust-psa-crypto.svg?branch=master" alt="Travis CI tests"/></a>
</p>

## Dependencies
Expand Down
9 changes: 3 additions & 6 deletions psa-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
[package]
name = "psa-crypto"
version = "0.7.0"
authors = ["Edmund Grimley Evans <edmund.grimley-evans@arm.com>",
"Paul Howard <paul.howard@arm.com>",
"Ionut Mihalcea <ionut.mihalcea@arm.com>",
"Hugues de Valon <hugues.devalon@arm.com>"]
version = "0.8.0"
authors = ["Parsec Project Contributors"]
edition = "2018"
description = "Wrapper around the PSA Cryptography API"
readme = "README.md"
Expand All @@ -14,7 +11,7 @@ license = "Apache-2.0"
repository = "https://github.com/parallaxsecond/rust-psa-crypto"

[dependencies]
psa-crypto-sys = { path = "../psa-crypto-sys", version = "0.7.0", default-features = false }
psa-crypto-sys = { path = "../psa-crypto-sys", version = "0.8.0", default-features = false }
log = "0.4.11"
serde = { version = "1.0.115", features = ["derive"] }
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
Expand Down
3 changes: 1 addition & 2 deletions psa-crypto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ This is the higher-level, more Rust-friendly interface.
<a href="https://crates.io/crates/psa-crypto"><img alt="Crates.io" src="https://img.shields.io/crates/v/psa-crypto"></a>
<a href="https://docs.rs/psa-crypto"><img src="https://docs.rs/psa-crypto/badge.svg" alt="Code documentation"/></a>
<a href="https://github.com/parallaxsecond/rust-psa-crypto/actions?query=workflow%3A%22Continuous+Integration%22"><img src="https://github.com/parallaxsecond/rust-psa-crypto/workflows/Continuous%20Integration/badge.svg" alt="CI tests"/></a>
<a href="https://travis-ci.com/parallaxsecond/rust-psa-crypto"><img src="https://travis-ci.com/parallaxsecond/rust-psa-crypto.svg?branch=master" alt="Travis CI tests"/></a>
</p>

## Mbed Crypto backing
Expand All @@ -15,7 +14,7 @@ The features of this crate can modify what is compiled in from the PSA Crypto
specification:
* `operations`: everything is included. The `psa-crypto-sys` crate statically
links by default Mbed Crypto. See the documentation of [that
crate](https://github.com/parallaxsecond/rust-psa-crypto/tree/master/psa-crypto-sys)
crate](https://github.com/parallaxsecond/rust-psa-crypto/tree/main/psa-crypto-sys)
to see how to modify the linking options. This feature is activated by default.
* `interface`: only the abstraction over the PSA Crypto interface (types,
helper methods) are included. The `MBEDTLS_INCLUDE_DIR` environment variable
Expand Down

0 comments on commit be5a9f5

Please sign in to comment.