diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index aa2961ad..de1aa0f5 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,5 +1,5 @@ [package] -name="tap_aggregator" +name = "tap_aggregator" version = "0.1.6" edition.workspace = true license.workspace = true @@ -27,8 +27,8 @@ prometheus = "0.13.3" axum = "0.6.18" futures-util = "0.3.28" lazy_static = "1.4.0" -alloy-sol-types = { version = "0.4.2", features = ["eip712-serde"]} -alloy-primitives = { version = "0.4.2", features = ["serde"]} +alloy-sol-types = { version = "0.5.0", features = ["eip712-serde"] } +alloy-primitives = { version = "0.5.0", features = ["serde"] } ethereum-types = "0.14.1" ruint = "1.10.1" diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index d9f2b5e8..39993ece 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,24 +1,24 @@ [package] -name="tap_core" +name = "tap_core" version = "0.6.0" edition.workspace = true license.workspace = true description = "Core Timeline Aggregation Protocol library: a fast, efficient and trustless unidirectional micro-payments system." [dependencies] -rand_core="0.6.4" -serde={ version="1.0", features=["derive"] } -rand="0.8.5" -thiserror="1.0.38" -ethereum-types={version="0.14.1"} +rand_core = "0.6.4" +serde = { version = "1.0", features = ["derive"] } +rand = "0.8.5" +thiserror = "1.0.38" +ethereum-types = { version = "0.14.1" } rstest = "0.17.0" ethers = { version = "2.0.0", default-features = false } ethers-core = "2.0.0" ethers-contract = "2.0.0" ethers-contract-derive = "2.0.0" anyhow = "1" -alloy-sol-types = { version = "0.4.2", features = ["eip712-serde"]} -alloy-primitives = { version = "0.4.2", features = ["serde"]} +alloy-sol-types = { version = "0.5.0", features = ["eip712-serde"] } +alloy-primitives = { version = "0.5.0", features = ["serde"] } strum = "0.24.1" strum_macros = "0.24.3" diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index 4f8faa4a..f9641a34 100644 --- a/tap_integration_tests/Cargo.toml +++ b/tap_integration_tests/Cargo.toml @@ -19,8 +19,8 @@ futures = "0.3.28" anyhow = "1.0.71" tokio = "1.28.2" prometheus = "0.13.3" -alloy-sol-types = { version = "0.4.2", features = ["eip712-serde"]} -alloy-primitives = { version = "0.4.2", features = ["serde"]} +alloy-sol-types = { version = "0.5.0", features = ["eip712-serde"] } +alloy-primitives = { version = "0.5.0", features = ["serde"] } [[test]] name = "integration_tests"