Use base58-monero 2, removing a git dependency

This commit is contained in:
Luke Parker
2023-09-15 13:59:29 -04:00
parent d263413e36
commit 3fd6d45b3e
2 changed files with 7 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ hex = { version = "0.4", default-features = false, features = ["alloc"] }
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1", default-features = false, features = ["alloc"] }
base58-monero = { version = "1", git = "https://github.com/monero-rs/base58-monero", rev = "5045e8d2b817b3b6c1190661f504e879bc769c29", default-features = false, features = ["check"] }
base58-monero = { version = "2", default-features = false, features = ["check"] }
# Used for the provided RPC
digest_auth = { version = "0.3", optional = true }
@@ -95,6 +95,8 @@ std = [
"hex/std",
"serde/std",
"serde_json/std",
"base58-monero/std",
]
http_rpc = ["digest_auth", "reqwest"]