Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#78] Thread safe API #82

Merged
merged 13 commits into from
Jul 22, 2019
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ edition = "2018"

[dependencies]
rand = "~0.6"
rand_chacha = "~0.1"
sha2 = "~0.8"
num-traits = "~0.2"
lazy_static = "~1.2"
Expand All @@ -24,6 +25,7 @@ gridiron = "^0.6.0"
quick-error = "~1.2"
hex="~0.3"
arrayref = "^0.3.5"
log = "~0.4"

[profile.dev]
opt-level = 2 # Build deps with optimization, don't build ourselves with optimization
Expand All @@ -40,7 +42,7 @@ lto = true

[dev-dependencies]
proptest = "~0.9"
rand_chacha = "~0.1"

criterion = "~0.2"

[features]
Expand Down
Loading