-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
35 lines (31 loc) · 906 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
authors = ["Jason Ozias <jason.ozias@kroger.com>"]
categories = ["algorithms", "cryptography"]
description = "An implementation of Shamir's Secret Sharing Scheme"
documentation = "http://docs.rs/ssss"
edition = "2021"
homepage = "http://docs.rs/ssss"
keywords = ["cryptography", "secret", "shamir"]
license = "MIT OR Apache-2.0"
name = "ssss"
readme = "README.md"
repository = "https://github.com/rustyhorde/sss.git"
version = "0.2.1"
rust-version = "1.65.0"
[package.metadata.cargo-all-features]
denylist = ["arbitrary"]
[features]
fuzz = ["arbitrary"]
unstable = []
[dependencies]
arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
anyhow = "1.0.93"
getset = "0.1.3"
num-bigint = "0.4.6"
num-traits = "0.2.19"
num-integer = "0.1.46"
rand = "0.8.5"
serde = { version = "1.0.214", features = ["derive"] }
thiserror = "2.0.0"
[build-dependencies]
rustversion = "1.0.18"