forked from shuhuiluo/uniswap-v3-sdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (50 loc) · 1.3 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "uniswap-v3-sdk"
version = "0.24.1"
edition = "2021"
authors = ["Shuhui Luo <twitter.com/aureliano_law>"]
description = "Uniswap V3 SDK for Rust"
license = "MIT"
readme = "README.md"
repository = "https://github.com/shuhuiluo/uniswap-v3-sdk-rs"
keywords = ["uniswap-v3", "ethereum", "rust", "sdk"]
exclude = [".github", ".gitignore", "rustfmt.toml"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
alloy-primitives = "0.6"
alloy-sol-types = "0.6"
anyhow = "1.0"
aperture-lens = { version = "0.4", optional = true }
base64 = { version = "0.21.7", optional = true }
bigdecimal = "0.4.2"
ethers = { version = "2.0", optional = true }
ethers-core = "2.0"
num-bigint = "0.4.4"
num-integer = "0.1.45"
num-traits = "0.2.17"
once_cell = "1.19"
regex = { version = "1.10", optional = true }
ruint = "1.11"
serde_json = { version = "1.0", optional = true }
thiserror = "1.0"
uniswap-sdk-core = "0.15.0"
uniswap_v3_math = "0.4.1"
[features]
extensions = ["aperture-lens", "base64", "ethers", "regex", "serde_json"]
[dev-dependencies]
criterion = "0.5.1"
ethers = "2.0"
tokio = { version = "1.36", features = ["full"] }
[[bench]]
name = "bit_math"
harness = false
[[bench]]
name = "sqrt_price_math"
harness = false
[[bench]]
name = "swap_math"
harness = false
[[bench]]
name = "tick_math"
harness = false