Skip to content

Commit 19978ba

Browse files
committed
fix hyperwallet
1 parent 4705378 commit 19978ba

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Cargo.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "Apache-2.0"
1111
[features]
1212
hyperapp = ["dep:futures-util", "dep:uuid", "logging"]
1313
logging = ["dep:color-eyre", "dep:tracing", "dep:tracing-error", "dep:tracing-subscriber"]
14-
hyperwallet = []
14+
hyperwallet = ["dep:hex", "dep:sha3"]
1515
simulation-mode = []
1616

1717
[dependencies]
@@ -48,3 +48,6 @@ color-eyre = { version = "0.6", features = ["capture-spantrace"], optional = tru
4848
tracing = { version = "0.1", optional = true }
4949
tracing-error = { version = "0.2", optional = true }
5050
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "std"], optional = true }
51+
52+
hex = { version = "0.4.3", optional = true }
53+
sha3 = { version = "0.10.8", optional = true }

src/hyperwallet_client/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::println as kiprintln;
21
use crate::Request;
32
use thiserror::Error;
43

0 commit comments

Comments
 (0)