From 0c7a4ee70813df6749890c9470d25680a964e910 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Sun, 12 Oct 2014 12:20:43 +0200 Subject: [PATCH] add seb-m/common.rsx --- README.md | 1 + generate_markdown_files.py | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 21c1b46..1bdb03d 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ Only projects that are stable and useful to users are added. Projects that do no * [DaGenix/rust-crypto](https://github.com/DaGenix/rust-crypto) — cryptographic algorithms in Rust [](https://travis-ci.org/DaGenix/rust-crypto) * [dnaq/sodiumoxide](https://github.com/dnaq/sodiumoxide) — [libsodium](https://github.com/jedisct1/libsodium) bindings * [klutzy/suruga](https://github.com/klutzy/suruga) — Rust implementation of [TLS 1.2](http://tools.ietf.org/html/rfc5246) +* [seb-m/common.rs](https://github.com/klutzy/suruga) — Common Rust crypto utilities * [sfackler/rust-openssl](https://github.com/sfackler/rust-openssl) — OpenSSL bindings [](https://travis-ci.org/sfackler/rust-openssl) ### Database diff --git a/generate_markdown_files.py b/generate_markdown_files.py index 8f6b845..e845dd6 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -6,6 +6,10 @@ def md_link(name, url): DATA = \ { + "seb-m/common.rs": { + "url": 'https://github.com/klutzy/suruga', + "descr": 'Common Rust crypto utilities' + }, "klutzy/suruga": { "url": 'https://github.com/klutzy/suruga', "descr": 'Rust implementation of ' + md_link('TLS 1.2', 'http://tools.ietf.org/html/rfc5246') @@ -452,6 +456,7 @@ add( '\n### Cryptography\n', rows_stable, rows_unstable ) entry( '* ', 'DaGenix/rust-crypto', rows_stable, rows_unstable ) entry( '* ', 'dnaq/sodiumoxide', rows_stable, rows_unstable ) entry( '* ', 'klutzy/suruga', rows_stable, rows_unstable ) +entry( '* ', 'seb-m/common.rs', rows_stable, rows_unstable ) entry( '* ', 'sfackler/rust-openssl', rows_stable, rows_unstable ) add( '\n### Database\n', rows_stable, rows_unstable )