forked from Aperture-Finance/Aperture-Lens
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (25 loc) · 859 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
[package]
name = "uniswap-lens"
version = "0.9.0"
edition = "2021"
authors = ["Shuhui Luo <twitter.com/aureliano_law>"]
description = "A library for querying Uniswap V3 using ephemeral lens contracts."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/shuhuiluo/uniswap-lens-rs"
categories = ["cryptography::cryptocurrencies", "finance", "no-std"]
keywords = ["alloy", "ethereum", "solidity", "uniswap"]
include = ["src/**/*.rs"]
[dependencies]
alloy = { version = "0.8", features = ["contract", "json-rpc", "rpc-types"] }
anyhow = "1"
thiserror = { version = "2", default-features = false }
[features]
default = []
std = ["alloy/std", "thiserror/std"]
[dev-dependencies]
alloy = { version = "0.8", features = ["transport-http"] }
dotenv = "0.15"
futures = "0.3"
once_cell = "1.20"
tokio = { version = "1", features = ["full"] }