From 98f7752ea98348549e78c47cd2c5f44b9b97f5d3 Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Sun, 27 Oct 2024 23:52:15 -0400 Subject: [PATCH] Write hypercore as table in tomlp I find this easier to tweak when developing --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 664adb7..aac3ca8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,11 +36,15 @@ tracing = "0.1" pretty-hash = "0.4" futures-timer = "3" futures-lite = "1" -hypercore = { version = "0.14.0", default-features = false } sha2 = "0.10" curve25519-dalek = "4" crypto_secretstream = "0.2" +[dependencies.hypercore] +version = "0.14.0" +default-features = false + + [dev-dependencies] async-std = { version = "1.12.0", features = ["attributes", "unstable"] } async-compat = "0.2.1"