Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- GUI + CLI + ASB: The Monero RPC pool now caches TCP and Tor streams

## [3.0.0-beta.5] - 2025-08-04

- GUI + CLI: Fixed a potential race condition where if the user closed the app while the Bitcoin was in the process of being published, manual recovery would be required to get to a recoverable state.
Expand Down
57 changes: 28 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 43 additions & 15 deletions monero-rpc-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,64 @@ edition = "2021"
name = "monero-rpc-pool"
path = "src/main.rs"

[[bin]]
name = "stress-test"
path = "src/bin/stress_test.rs"
required-features = ["stress-test"]

[features]
stress-test = ["reqwest"]

[dependencies]
# Core utilities
anyhow = { workspace = true }
axum = { version = "0.7", features = ["macros"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
futures = { workspace = true }
monero = { workspace = true }
monero-rpc = { path = "../monero-rpc" }
rand = { workspace = true }
regex = "1.0"
serde = { workspace = true }
serde_json = { workspace = true }
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "migrate"] }
tokio = { workspace = true, features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
url = "2.0"
uuid = { workspace = true }

# CLI and logging
clap = { version = "4.0", features = ["derive"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }

# Async runtime
crossbeam = "0.8.4"
tokio = { workspace = true, features = ["full"] }

# Serialization
chrono = { version = "0.4", features = ["serde"] }
serde = { workspace = true }
serde_json = { workspace = true }
typeshare = { workspace = true }
url = "2.0"
uuid = { workspace = true }

arti-client = { workspace = true, features = ["tokio"] }
tor-rtcompat = { workspace = true, features = ["tokio", "rustls"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "migrate"] }

# Web framework and HTTP
axum = { version = "0.8.4", features = ["macros"] }
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["cors"] }

# TLS/Security
native-tls = "0.2"
tokio-native-tls = "0.3"

# Tor networking
arti-client = { workspace = true, features = ["tokio"] }
tor-rtcompat = { workspace = true, features = ["tokio", "rustls"] }

# Monero/Project specific
monero = { workspace = true }
monero-rpc = { path = "../monero-rpc" }
swap-serde = { path = "../swap-serde" }

# Optional dependencies (for features)
reqwest = { version = "0.11", features = ["json"], optional = true }

[dev-dependencies]
tokio-test = "0.4"
Loading