mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
25 lines
569 B
TOML
25 lines
569 B
TOML
[package]
|
|
name = "rusty_secrets"
|
|
version = "0.0.2"
|
|
authors = ["Frederic Jacobs <github@fredericjacobs.com>", "sellibitze"]
|
|
description = "Implementation of threshold Shamir secret sharing in the Rust programming language."
|
|
homepage = "https://github.com/freedomofpress/RustySecrets"
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
getopts = "^0.2.14"
|
|
rustc-serialize = "^0.3.18"
|
|
rand = "^0.3.14"
|
|
|
|
[lib]
|
|
name = "rusty_secrets"
|
|
path = "src/lib/mod.rs"
|
|
crate_type = ["rlib"]
|
|
|
|
[[bin]]
|
|
name = "rusty_secrets_bin"
|
|
path = "src/main.rs"
|
|
doc = false
|