From 203bdd076ec744a1794a7b151efb6b9247d43455 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 3 Aug 2014 19:16:09 -0700 Subject: [PATCH] Shift directory structure --- .gitignore | 1 + Cargo.toml | 2 +- {bn => src/bn}/mod.rs | 0 {crypto => src/crypto}/hash.rs | 0 {crypto => src/crypto}/hmac.rs | 0 {crypto => src/crypto}/mod.rs | 0 {crypto => src/crypto}/pkcs5.rs | 0 {crypto => src/crypto}/pkey.rs | 0 {crypto => src/crypto}/rand.rs | 0 {crypto => src/crypto}/symm.rs | 0 lib.rs => src/lib.rs | 0 {ssl => src/ssl}/error.rs | 0 {ssl => src/ssl}/ffi.rs | 0 {ssl => src/ssl}/mod.rs | 0 {ssl => src/ssl}/tests.rs | 0 15 files changed, 2 insertions(+), 1 deletion(-) rename {bn => src/bn}/mod.rs (100%) rename {crypto => src/crypto}/hash.rs (100%) rename {crypto => src/crypto}/hmac.rs (100%) rename {crypto => src/crypto}/mod.rs (100%) rename {crypto => src/crypto}/pkcs5.rs (100%) rename {crypto => src/crypto}/pkey.rs (100%) rename {crypto => src/crypto}/rand.rs (100%) rename {crypto => src/crypto}/symm.rs (100%) rename lib.rs => src/lib.rs (100%) rename {ssl => src/ssl}/error.rs (100%) rename {ssl => src/ssl}/ffi.rs (100%) rename {ssl => src/ssl}/mod.rs (100%) rename {ssl => src/ssl}/tests.rs (100%) diff --git a/.gitignore b/.gitignore index 4127eea20..29f7c3a40 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /doc/ /target/ +/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml index 7c722c56d..8d6329a41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,4 +7,4 @@ authors = ["Steven Fackler