From 8091a73b8015da0ad48a18e92cd15de05305ece4 Mon Sep 17 00:00:00 2001 From: bunnie Date: Fri, 7 Aug 2020 23:39:02 +0800 Subject: [PATCH] try to turn off "std" inclusion for the assembler crate ...unsuccessful tho. Rust features are hard. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 372d1d7..b042a01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ subtle = { version = "^2.2.1", default-features = false } serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] } packed_simd = { version = "0.3", features = ["into_bits"], optional = true } zeroize = { version = "1", default-features = false } -engine25519-as = { path="../engine25519-as" } +engine25519-as = { path="../engine25519-as", default-features = false, features = [] } [features] nightly = ["subtle/nightly"]