Skip to content

Commit d3e5d89

Browse files
newpavlovdignifiedquire
authored andcommitted
docs: minor post-transfer changes
* post-transfer changes * fix badges and CI * improve license section
1 parent 90e2e04 commit d3e5d89

File tree

4 files changed

+33
-7
lines changed

4 files changed

+33
-7
lines changed

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: rust
2+
3+
matrix:
4+
include:
5+
- rust: 1.27.0
6+
- rust: stable
7+
- rust: nightly
8+
9+
script:
10+
- cargo test --verbose --all --release
11+
12+
cache: cargo

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "rsa"
33
version = "0.1.0"
4-
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
5-
description = "RSA implementation in Rust"
4+
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
5+
description = "Pure Rust RSA implementation"
66
license = "MIT OR Apache-2.0"
7-
homepage = "https://github.com/dignifiedquire/rust-rsa"
8-
repository = "https://github.com/dignifiedquire/rust-rsa"
9-
7+
documentation = "https://docs.rs/rsa"
8+
repository = "https://github.com/RustCrypto/RSA"
109
keywords = ["rsa", "encryption", "security", "crypto"]
10+
categories = ["cryptography"]
1111

1212
[dependencies]
1313
num-bigint-dig = { version = "0.2", features = ["rand", "i128", "u64_digit"] }

README.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# RSA
2+
[![crates.io](https://img.shields.io/crates/v/rsa.svg)](https://crates.io/crates/rsa) [![Documentation](https://docs.rs/rsa/badge.svg)](https://docs.rs/rsa) [![Build Status](https://travis-ci.org/RustCrypto/RSA.svg?branch=master)](https://travis-ci.org/RustCrypto/RSA) [![dependency status](https://deps.rs/repo/github/RustCrypto/RSA/status.svg)](https://deps.rs/repo/github/RustCrypto/RSA)
23

3-
> A portable RSA implementation in Rust.
4+
A portable RSA implementation in pure Rust.
45

56
:warning: **WARNING:** This library has __not__ been audited, so please do not use for production code.
67

@@ -31,4 +32,15 @@ There will be three phases before `1.0` :ship: can be released.
3132

3233
## License
3334

34-
MIT or Apache 2.0
35+
Licensed under either of
36+
37+
* [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
38+
* [MIT license](http://opensource.org/licenses/MIT)
39+
40+
at your option.
41+
42+
### Contribution
43+
44+
Unless you explicitly state otherwise, any contribution intentionally submitted
45+
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
46+
dual licensed as above, without any additional terms or conditions.

src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![doc(html_logo_url =
2+
"https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
13
extern crate num_bigint_dig as num_bigint;
24
extern crate num_integer;
35
extern crate num_traits;

0 commit comments

Comments
 (0)