diff --git a/Cargo.toml b/Cargo.toml index a19a2a2..dbc4165 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uniswap-v3-sdk" -version = "3.1.3" +version = "3.2.0" edition = "2021" authors = ["Shuhui Luo "] description = "Uniswap V3 SDK for Rust" @@ -15,7 +15,7 @@ exclude = [".github", ".gitignore", "rustfmt.toml"] all-features = true [dependencies] -alloy = { version = "0.8", optional = true, features = ["contract"] } +alloy = { version = "0.9", optional = true, features = ["contract"] } alloy-primitives = "0.8" alloy-sol-types = "0.8" anyhow = { version = "1.0", optional = true } @@ -30,7 +30,7 @@ regex = { version = "1.11", optional = true } rustc-hash = "2.0" serde_json = { version = "1.0", optional = true } thiserror = { version = "2", default-features = false } -uniswap-lens = { version = "0.9", optional = true } +uniswap-lens = { version = "0.10", optional = true } uniswap-sdk-core = "3.2.0" [features] @@ -39,7 +39,7 @@ extensions = ["alloy", "anyhow", "base64", "regex", "serde_json", "uniswap-lens" std = ["alloy?/std", "thiserror/std", "uniswap-sdk-core/std", "uniswap-lens?/std"] [dev-dependencies] -alloy = { version = "0.8", features = ["provider-anvil-node", "signer-local"] } +alloy = { version = "0.9", features = ["provider-anvil-node", "signer-local"] } criterion = "0.5.1" dotenv = "0.15.0" tokio = { version = "1.40", features = ["full"] } diff --git a/README.md b/README.md index cfb17e6..67f993f 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ It is feature-complete with unit tests matching the TypeScript SDK. Add the following to your `Cargo.toml` file: ```toml -uniswap-v3-sdk = { version = "3.0.0", features = ["extensions", "std"] } +uniswap-v3-sdk = { version = "3.2.0", features = ["extensions", "std"] } ``` ### Usage