Files
simple_crypto/Cargo.toml
2018-03-24 12:03:29 -07:00

23 lines
459 B
TOML

[package]
name = "simple_crypto"
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]
num = "^0.1.42"
rand = "^0.3"
[dev-dependencies]
quickcheck = "^0.4.1"
[profile.test]
opt-level = 2
debug = true
debug-assertions = true