Skip to content

Commit

Permalink
Merge pull request #38 from UnstoppableSwap/bump/arti
Browse files Browse the repository at this point in the history
bump: arti to 0.25.0
  • Loading branch information
umgefahren authored Dec 19, 2024
2 parents e127d90 + e6b913e commit 8215104
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ anyhow = "1.0.93"
tokio = "1.41.1"
futures = "0.3"

arti-client = { version = "0.24", default-features = false, features = ["tokio", "rustls", "onion-service-client"] }
arti-client = { version = "^0.25", default-features = false, features = ["tokio", "rustls", "onion-service-client", "static-sqlite"] }
libp2p = { version = "^0.53", default-features = false, features = ["tokio", "tcp", "tls"] }

tor-rtcompat = { version = "0.24.0", features = ["tokio", "rustls"] }
tor-rtcompat = { version = "^0.25", features = ["tokio", "rustls"] }
tracing = "0.1.40"
tor-hsservice = { version = "0.24.0", optional = true }
tor-cell = { version = "0.24.0", optional = true }
tor-proto = { version = "0.24.0", optional = true }
tor-hsservice = { version = "^0.25", optional = true }
tor-cell = { version = "^0.25", optional = true }
tor-proto = { version = "^0.25", optional = true }
data-encoding = { version = "2.6.0" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ use libp2p::{
core::transport::{ListenerId, TransportEvent},
Multiaddr, Transport, TransportError,
};
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};
use std::{collections::HashSet, pin::Pin};
use std::{collections::VecDeque, sync::Arc};
use thiserror::Error;
use tor_rtcompat::tokio::TokioRustlsRuntime;

Expand Down

0 comments on commit 8215104

Please sign in to comment.