Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release v0.4.1 #142

Merged
merged 4 commits into from
Feb 26, 2024
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
16 changes: 8 additions & 8 deletions Cargo.lock

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

17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
name = "erc20_processor"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand Down Expand Up @@ -50,6 +50,7 @@ metrics = "0.12"
metrics-core = "0.5.2"
metrics-runtime = { version = "0.13.1", default-features = false, features = ["observers"] }
mime_guess = "2.0.3"
parking_lot = "0.12"
rand = "0.8.5"
regex = "1.10.2"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
Expand All @@ -75,6 +76,12 @@ web3 = { version = "0.19", default-features = false, features = [
"signing",
"http-rustls-tls",
] }
# local dependencies
erc20_rpc_pool = { path = "crates/erc20_rpc_pool", version = "0.4.0" }
erc20_payment_lib = { path = "crates/erc20_payment_lib", version = "0.4.0" }
erc20_payment_lib_common = { path = "crates/erc20_payment_lib_common", version = "0.4.0" }
erc20_payment_lib_extra = { path = "crates/erc20_payment_lib_extra", version = "0.4.0" }
web3_test_proxy_client = { path = "crates/web3_test_proxy_client", version = "0.4.0" }

[dependencies]
actix-cors = { workspace = true }
Expand Down Expand Up @@ -115,10 +122,10 @@ url = { workspace = true }
uuid = { workspace = true }
web3 = { workspace = true }

erc20_rpc_pool = { path = "crates/erc20_rpc_pool", version = "0.3.20" }
erc20_payment_lib = { path = "crates/erc20_payment_lib", version = "0.3.20" }
erc20_payment_lib_common = { path = "crates/erc20_payment_lib_common", version = "0.3.20" }
erc20_payment_lib_extra = { path = "crates/erc20_payment_lib_extra", version = "0.3.20" }
erc20_rpc_pool = { workspace = true }
erc20_payment_lib = { workspace = true }
erc20_payment_lib_common = { workspace = true }
erc20_payment_lib_extra = { workspace = true }

[dev-dependencies]
bollard = { workspace = true }
Expand Down
7 changes: 4 additions & 3 deletions crates/erc20_payment_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "erc20_payment_lib"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand Down Expand Up @@ -40,6 +40,7 @@ trust-dns-resolver = { workspace = true }
url = { workspace = true }
uuid = { workspace = true }
web3 = { workspace = true }
erc20_rpc_pool = { path = "../erc20_rpc_pool", version = "0.3.20" }
erc20_payment_lib_common = { path = "../erc20_payment_lib_common", version = "0.3.20" }
# local dependencies
erc20_rpc_pool = { workspace = true }
erc20_payment_lib_common = { workspace = true }

2 changes: 1 addition & 1 deletion crates/erc20_payment_lib_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "erc20_payment_lib_common"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand Down
10 changes: 5 additions & 5 deletions crates/erc20_payment_lib_extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "erc20_payment_lib_extra"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand Down Expand Up @@ -33,7 +33,7 @@ actix-web = { workspace = true }
actix-files = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }

erc20_payment_lib = { path = "../erc20_payment_lib", version = "0.3.20" }
erc20_payment_lib_common = { path = "../erc20_payment_lib_common", version = "0.3.20" }
erc20_rpc_pool = { path = "../erc20_rpc_pool", version = "0.3.20" }
# local dependencies
erc20_payment_lib = { workspace = true }
erc20_payment_lib_common = { workspace = true }
erc20_rpc_pool = { workspace = true }
13 changes: 7 additions & 6 deletions crates/erc20_payment_lib_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "erc20_payment_lib_test"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand Down Expand Up @@ -34,8 +34,9 @@ actix-files = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
env_logger = { workspace = true }
erc20_payment_lib = { path = "../erc20_payment_lib", version = "0.3.20" }
erc20_payment_lib_common = { path = "../erc20_payment_lib_common", version = "0.3.20" }
erc20_payment_lib_extra = { path = "../erc20_payment_lib_extra", version = "0.3.20" }
web3_test_proxy_client = { path = "../web3_test_proxy_client", version = "0.3.20" }
erc20_rpc_pool = { path = "../erc20_rpc_pool", version = "0.3.20" }
# local dependencies
erc20_payment_lib = { workspace = true }
erc20_payment_lib_common = { workspace = true }
erc20_payment_lib_extra = { workspace = true }
web3_test_proxy_client = { workspace = true }
erc20_rpc_pool = { workspace = true }
7 changes: 4 additions & 3 deletions crates/erc20_rpc_pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "erc20_rpc_pool"
description = "Rpc pool for web3 library"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"

Expand All @@ -23,6 +23,7 @@ humantime = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
metrics = { workspace = true }
parking_lot = { workspace = true }
rand = { workspace = true }
reqwest = { workspace = true }
rust_decimal = { workspace = true }
Expand All @@ -39,5 +40,5 @@ toml = { workspace = true }
trust-dns-resolver = { workspace = true }
uuid = { workspace = true }
web3 = { workspace = true }
erc20_payment_lib_common = { path = "../erc20_payment_lib_common", version = "0.3.20" }
parking_lot = "0.12.1"
# local dependencies
erc20_payment_lib_common = { workspace = true }
2 changes: 1 addition & 1 deletion crates/web3_test_proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "web3_test_proxy"
description = "Simple proxy for web3 for listing latest web3 traffic"
version = "0.3.25"
version = "0.4.1"
edition = "2021"
license = "MIT"
authors = ["Sieciech Czajka <[email protected]>"]
Expand Down
7 changes: 4 additions & 3 deletions crates/web3_test_proxy_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "web3_test_proxy_client"
version = "0.3.25"
version = "0.4.1"
description = "Proxy for web3 test proxy"
authors = ["Sieciech Czajka <[email protected]>"]
edition = "2021"
Expand All @@ -16,5 +16,6 @@ serde_json = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
tokio = { workspace = true }
web3 = { workspace = true }
erc20_payment_lib = { path = "../erc20_payment_lib", version = "0.3.20" }
erc20_payment_lib_common = { path = "../erc20_payment_lib_common", version = "0.3.20" }
# local dependencies
erc20_payment_lib = { workspace = true }
erc20_payment_lib_common = { workspace = true }
Loading