-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
31 lines (28 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "uniswap-sdk-core"
version = "4.0.0-rc2"
edition = "2021"
authors = ["malik <[email protected]>", "Shuhui Luo <twitter.com/aureliano_law>"]
description = "The Uniswap SDK Core in Rust provides essential functionality for interacting with the Uniswap decentralized exchange"
license = "MIT"
readme = "README.md"
repository = "https://github.com/malik672/uniswap-sdk-core-rust"
categories = ["cryptography::cryptocurrencies", "finance", "no-std"]
keywords = ["sdk-core", "ethereum", "sdk"]
exclude = [".github", ".gitignore", "rustfmt.toml"]
[dependencies]
alloy-primitives = { version = ">=0.8.5", features = ["map-fxhash"] }
bnum = "0.12.0"
derive_more = { version = "1.0.0", features = ["deref"] }
eth_checksum = { version = "0.1.2", optional = true }
fastnum = { version = "0.1.9", default-features = false, features = ["libm", "numtraits"] }
lazy_static = "1.5"
num-integer = "0.1.46"
regex = { version = "1.11", optional = true }
thiserror = { version = "2", default-features = false }
[features]
default = []
std = ["fastnum/std", "thiserror/std"]
validate_parse_address = ["eth_checksum", "regex"]
[lib]
doctest = true