From 510e58a94911b67b20d46e21da3d5df9fce1a742 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 19 Jul 2022 09:03:24 +1000 Subject: [PATCH] Remove leading whitespace character The manifest has two cases of leading whitespace, doesn't obviously mean anything, remove them. Whitespace was introduced in commit: `7d3a149ca5064147229db147359638cbcb54acdd` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f486446..ff9b836 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ rustdoc-args = ["--cfg", "docsrs"] default = ["std"] std = ["alloc", "secp256k1-sys/std"] # allow use of Secp256k1::new and related API that requires an allocator - alloc = ["secp256k1-sys/alloc"] - bitcoin-hashes-std = ["bitcoin_hashes/std"] +alloc = ["secp256k1-sys/alloc"] +bitcoin-hashes-std = ["bitcoin_hashes/std"] rand-std = ["rand/std", "rand/std_rng"] recovery = ["secp256k1-sys/recovery"] lowmemory = ["secp256k1-sys/lowmemory"]