From d3b1780fea9836795e7af1dd893eb5cbac760571 Mon Sep 17 00:00:00 2001 From: Simon Wicky Date: Tue, 21 May 2024 09:38:13 +0200 Subject: [PATCH] update dependency to new sphinx release --- Cargo.lock | 3 ++- common/nymsphinx/types/Cargo.toml | 2 +- nym-outfox/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa5e04c0ae..18b1a5af7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7785,7 +7785,8 @@ dependencies = [ [[package]] name = "sphinx-packet" version = "0.2.0" -source = "git+https://github.com/nymtech/sphinx.git?branch=simon/x25519#e9f9aada09ac4fa2df8048c64b9fd5b3e77c5f9c" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cffb0df8390239119e76d4f60a6b06900351ee971d78868fc4cfef18301728ad" dependencies = [ "aes", "arrayref", diff --git a/common/nymsphinx/types/Cargo.toml b/common/nymsphinx/types/Cargo.toml index fe47ed5212..dcc402f5b8 100644 --- a/common/nymsphinx/types/Cargo.toml +++ b/common/nymsphinx/types/Cargo.toml @@ -8,7 +8,7 @@ license = { workspace = true } repository = { workspace = true } [dependencies] -sphinx-packet = { git = "https://github.com/nymtech/sphinx.git", branch = "simon/x25519", optional = true } +sphinx-packet = { version = "0.2.0", optional = true } nym-outfox = { path = "../../../nym-outfox", optional = true } thiserror = { workspace = true } diff --git a/nym-outfox/Cargo.toml b/nym-outfox/Cargo.toml index f9942b2673..3939dfd20c 100644 --- a/nym-outfox/Cargo.toml +++ b/nym-outfox/Cargo.toml @@ -18,7 +18,7 @@ x25519-dalek = { version = "2.0.0", features = ["static_secrets"]} chacha20poly1305 = "0.10.1" getrandom = { workspace = true, features = ["js"] } thiserror = { workspace = true } -sphinx-packet = { git = "https://github.com/nymtech/sphinx.git", branch = "simon/x25519" } +sphinx-packet = "0.2.0" rand = { workspace = true } log = "0.4"