brute-force/Cargo.toml

29 lines
736 B
TOML
Raw Permalink Normal View History

2021-02-04 03:31:54 +00:00
[package]
name = "brute-force"
2021-05-22 19:45:01 +00:00
version = "0.2.0"
2021-02-04 03:31:54 +00:00
authors = ["Lee Bousfield <ljbousfield@gmail.com>"]
edition = "2018"
license = "MIT"
description = "A library for brute forcing arbitrary computations"
2021-02-04 03:44:54 +00:00
repository = "https://github.com/PlasmaPower/brute-force"
2021-02-04 03:31:54 +00:00
documentation = "https://docs.rs/brute-force"
[dependencies]
crossbeam-channel = "0.5.0"
crossbeam-utils = "0.8.1"
2021-05-22 19:40:51 +00:00
curve25519-dalek = { package = "curve25519-dalek-ng", version = "4.0.1", optional = true }
2021-02-04 03:31:54 +00:00
log = "0.4.14"
num_cpus = "1.13.0"
2021-05-22 19:40:51 +00:00
rand = { version = "0.8.1", optional = true }
2021-02-04 03:31:54 +00:00
[features]
nightly = []
curve25519 = ["curve25519-dalek", "rand"]
[dev-dependencies]
blake2 = "0.9.1"
hex = "0.4.2"
2021-02-04 03:44:54 +00:00
[package.metadata.docs.rs]
rustc-args = ["--features", "curve25519"]