[package] name = "rsa_rs" version = "0.3.1" edition = "2021" description = "rust rsa library -- UNTESTED HOBBY PROJECT -- DO NOT USE FOR SERIOUS APPLICATIONS" repository = "https://github.com/leninRessurect/rsa_rs" license-file = "LICENSE.txt" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } num-bigint = { version = "0.4", features = ["serde", "rand"] } num-traits = "0.2" num-iter = "0.1" [dev-dependencies] criterion = { version = "0.3", features = ["html_reports"] } [[bench]] name = "bench_lib" harness = false [profile.test] opt-level = 3