-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (27 loc) · 827 Bytes
/
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
[package]
name = "uniswap-v4-sdk"
version = "0.1.0"
edition = "2021"
authors = ["Shuhui Luo <twitter.com/aureliano_law>"]
description = "Uniswap V4 SDK for Rust"
license = "MIT"
readme = "README.md"
repository = "https://github.com/shuhuiluo/uniswap-v4-sdk-rs"
categories = ["cryptography::cryptocurrencies", "finance", "no-std"]
keywords = ["uniswap-v4", "ethereum", "sdk"]
exclude = [".github", ".gitignore", "rustfmt.toml"]
[dependencies]
alloy-primitives = "0.8"
alloy-sol-types = "0.8"
derive_more = "1.0.0"
rustc-hash = "2.1.0"
thiserror = { version = "2", default-features = false }
uniswap-sdk-core = "3.2.0"
uniswap-v3-sdk = "3.0.0"
[dev-dependencies]
alloy-signer = "0.8"
alloy-signer-local = "0.8"
once_cell = "1.20.2"
[features]
default = []
std = ["thiserror/std", "uniswap-sdk-core/std", "uniswap-v3-sdk/std"]