Skip to content

Commit 802319d

Browse files
authored
v0.0.1-alpha (#65)
1 parent 3c8d21d commit 802319d

File tree

5 files changed

+43
-5
lines changed

5 files changed

+43
-5
lines changed

.github/workflows/rustls-rustcrypto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
toolchain:
24+
- 1.75.0 # MSRV
2425
- stable
2526
runs-on: ubuntu-latest
2627
steps:
@@ -43,7 +44,6 @@ jobs:
4344
components: clippy
4445
- run: cargo clippy --all --all-features -- -D warnings
4546

46-
4747
doc:
4848
runs-on: ubuntu-latest
4949
steps:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
[package]
22
name = "rustls-rustcrypto"
3-
version = "0.1.0"
4-
edition = "2021"
3+
description = """
4+
Pure Rust cryptography provider for the Rustls TLS library using algorithm implementations from the
5+
RustCrypto organization
6+
"""
7+
version = "0.0.1-alpha"
8+
authors = ["RustCrypto Developers"]
59
license = "MIT OR Apache-2.0"
10+
readme = "README.md"
11+
repository = "https://github.com/RustCrypto/rustls-rustcrypto"
12+
categories = ["cryptography", "no-std"]
13+
keywords = ["rustls", "tls"]
14+
edition = "2021"
15+
rust-version = "1.75"
616

717
# Ensure all dependencies + feats are mapped to crate features for correct usage
818
# default features often have std breaking no_std and potentially other unwanted

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# rustls-rustcrypto
22

3+
[![crate][crate-image]][crate-link]
4+
[![Docs][docs-image]][docs-link]
5+
[![Build Status][build-image]][build-link]
6+
![Apache2/MIT licensed][license-image]
7+
![Rust Version][rustc-image]
8+
[![Project Chat][chat-image]][chat-link]
9+
310
[RustCrypto]-based provider implementation for version 0.23 of [rustls], maintained by the RustCrypto organization.
411

512
## ⚠️USE THIS AT YOUR OWN RISK! DO NOT USE THIS IN PRODUCTION⚠️
@@ -49,5 +56,20 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
4956
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
5057
dual licensed as above, without any additional terms or conditions.
5158

59+
[//]: # (badges)
60+
61+
[crate-image]: https://buildstats.info/crate/rustls-rustcrypto
62+
[crate-link]: https://crates.io/crates/rustls-rustcrypto
63+
[docs-image]: https://docs.rs/rustls-rustcrypto/badge.svg
64+
[docs-link]: https://docs.rs/rustls-rustcrypto/
65+
[build-image]: https://github.com/RustCrypto/rustls-rustcrypto/actions/workflows/rustls-rustcrypto.yml/badge.svg
66+
[build-link]: https://github.com/RustCrypto/rustls-rustcrypto/actions/workflows/rustls-rustcrypto.yml
67+
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
68+
[rustc-image]: https://img.shields.io/badge/rustc-1.75+-blue.svg
69+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
70+
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/434751-TLS
71+
72+
[//]: # (links)
73+
5274
[RustCrypto]: https://github.com/RustCrypto/
53-
[rustls]: https://github.com/rustls/rustls/pull/1405
75+
[rustls]: https://github.com/rustls/rustls/

0 commit comments

Comments
 (0)