[package] name = "uniswap-sdk-core" version = "3.2.0" edition = "2021" authors = ["malik ", "Shuhui Luo "] description = "The Uniswap SDK Core in Rust provides essential functionality for interacting with the Uniswap decentralized exchange" license = "MIT" [dependencies] alloy-primitives = "0.8" bigdecimal = "0.4.5" derive_more = { version = "1.0.0", features = ["deref"] } eth_checksum = { version = "0.1.2", optional = true } lazy_static = "1.5" num-bigint = "0.4" num-integer = "0.1" num-traits = "0.2" regex = { version = "1.11", optional = true } rustc-hash = "2.0" thiserror = { version = "2", default-features = false } [features] std = ["thiserror/std"] validate_parse_address = ["eth_checksum", "regex"] [lib] doctest = true