Skip to content

Commit 79ca655

Browse files
committed
Bump version to 0.5.1
1 parent 8cd601f commit 79ca655

File tree

9 files changed

+21
-27
lines changed

9 files changed

+21
-27
lines changed

Cargo.lock

Lines changed: 8 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ path = "src/main.rs"
1818
name = "erc20_processor"
1919
description = "Payment processor for ERC20 tokens"
2020
authors = ["Sieciech Czajka <[email protected]>"]
21-
version = "0.5.0"
21+
version = "0.5.1"
2222
edition = "2021"
2323
license = "MIT"
2424

@@ -79,11 +79,11 @@ web3 = { version = "0.19", default-features = false, features = [
7979
"http-rustls-tls",
8080
] }
8181
# local dependencies
82-
erc20_rpc_pool = { path = "crates/erc20_rpc_pool", version = "=0.5.0" }
83-
erc20_payment_lib = { path = "crates/erc20_payment_lib", version = "=0.5.0" }
84-
erc20_payment_lib_common = { path = "crates/erc20_payment_lib_common", version = "=0.5.0" }
85-
erc20_payment_lib_extra = { path = "crates/erc20_payment_lib_extra", version = "=0.5.0" }
86-
web3_test_proxy_client = { path = "crates/web3_test_proxy_client", version = "=0.5.0" }
82+
erc20_rpc_pool = { path = "crates/erc20_rpc_pool", version = "=0.5.1" }
83+
erc20_payment_lib = { path = "crates/erc20_payment_lib", version = "=0.5.1" }
84+
erc20_payment_lib_common = { path = "crates/erc20_payment_lib_common", version = "=0.5.1" }
85+
erc20_payment_lib_extra = { path = "crates/erc20_payment_lib_extra", version = "=0.5.1" }
86+
web3_test_proxy_client = { path = "crates/web3_test_proxy_client", version = "=0.5.1" }
8787

8888
[dependencies]
8989
actix-cors = { workspace = true }

crates/erc20_payment_lib/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "erc20_payment_lib"
33
description = "Payment processor for ERC20 tokens"
44
authors = ["Sieciech Czajka <[email protected]>"]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
edition = "2021"
77
license = "MIT"
88

@@ -13,7 +13,6 @@ actix-web = { workspace = true }
1313
actix-web-actors = { workspace = true }
1414
awc = { workspace = true }
1515
chrono = { workspace = true, features = ["serde"] }
16-
dotenv = { workspace = true }
1716
fastrand = { workspace = true }
1817
futures = { workspace = true }
1918
futures-util = { workspace = true }
@@ -25,14 +24,12 @@ metrics = { workspace = true }
2524
rand = { workspace = true }
2625
regex = { workspace = true }
2726
rust_decimal = { workspace = true }
28-
rustc-hex = { workspace = true }
2927
secp256k1 = { workspace = true }
3028
serde = { workspace = true }
3129
serde_json = { workspace = true }
3230
sha3 = { workspace = true }
3331
sqlx = { workspace = true }
3432
structopt = { workspace = true }
35-
thunderdome = { workspace = true }
3633
tokio = { workspace = true }
3734
tokio-stream = { workspace = true }
3835
toml = { workspace = true }

crates/erc20_payment_lib_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "erc20_payment_lib_common"
33
description = "Payment processor for ERC20 tokens"
44
authors = ["Sieciech Czajka <[email protected]>"]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
edition = "2021"
77
license = "MIT"
88

crates/erc20_payment_lib_extra/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "erc20_payment_lib_extra"
33
description = "Payment processor for ERC20 tokens"
44
authors = ["Sieciech Czajka <[email protected]>"]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
edition = "2021"
77
license = "MIT"
88

crates/erc20_payment_lib_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "erc20_payment_lib_test"
33
description = "Payment processor for ERC20 tokens"
44
authors = ["Sieciech Czajka <[email protected]>"]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
edition = "2021"
77
license = "MIT"
88

crates/erc20_rpc_pool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "erc20_rpc_pool"
33
description = "Rpc pool for web3 library"
44
authors = ["Sieciech Czajka <[email protected]>"]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
edition = "2021"
77
license = "MIT"
88

crates/web3_test_proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "web3_test_proxy"
33
description = "Simple proxy for web3 for listing latest web3 traffic"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Sieciech Czajka <[email protected]>"]

crates/web3_test_proxy_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "web3_test_proxy_client"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Proxy for web3 test proxy"
55
authors = ["Sieciech Czajka <[email protected]>"]
66
edition = "2021"

0 commit comments

Comments
 (0)