[package] name = "shamir_secret_sharing" version = "0.1.1" authors = ["hupeng "] edition = "2018" repository = "https://github.com/bitrocks/shamir-secret-sharing" readme = "README.md" description = "A rust implementation of Shamir Secret Sharing over Finite Field." license = "MIT" documentation = "https://docs.rs/shamir_secret_sharing" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.5" num-bigint = { version = "0.2", features = ["rand"]} num-traits = "0.2.11"