mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
21 lines
403 B
TOML
21 lines
403 B
TOML
[package]
|
|
name = "rusty-secrets"
|
|
version = "0.0.1"
|
|
description = "Implementation of threshold Shamir secret sharing in the Rust programming language."
|
|
license = "GPLv3"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
getopts = "^0.2.14"
|
|
rustc-serialize = "^0.3.18"
|
|
rand = "^0.3.14"
|
|
libc = "^0.2.0"
|
|
|
|
[lib]
|
|
name = "rusty_secrets_lib"
|
|
path = "src/lib/mod.rs"
|
|
|
|
[[bin]]
|
|
name = "rusty_secrets_bin"
|
|
path = "src/main.rs"
|