More basic infrastructure.

This commit is contained in:
2018-02-25 11:02:44 -08:00
parent 7fae8036d4
commit b832092605
3 changed files with 43 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "simple_rsa"
version = "0.1.0"
authors = ["Adam Wick <awick@uhsure.com>"]
description = "A simple crypto library for Rust."
categories = ["cryptography"]
keywords = ["crypto","cryptography"]
license-file = "LICENSE"
repository = "https://github.com/acw/simple_crypto"
[dependencies]
rand = "^0.3"
[dev-dependencies]
quickcheck = "^0.4.1"
[profile.test]
opt-level = 2
debug = true
debug-assertions = true