forked from defi-quant/amms-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (42 loc) · 1.35 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
[package]
name = "amms"
version = "0.6.2"
edition = "2021"
license = "MIT"
description = "A library to interact with automated market makers across EVM chains."
readme = "README.md"
homepage = "https://github.com/darkforestry/amms-rs"
repository = "https://github.com/darkforestry/amms-rs"
keywords = ["ethereum", "amm", "mev"]
exclude = [
"target/*",
".github/*",
".gitignore"
]
[dependencies]
anyhow = "1.0.76"
arraydeque = { version = "0.5.1", optional = true }
artemis-core = { git = "https://github.com/paradigmxyz/artemis.git", branch = "main" }
async-trait = "0.1.76"
criterion = "0.5.1"
ethers = { version = "2.0.11", default-features = true, features = ["abigen", "ws", "ipc", "rustls"] } # TODO: update this to aloy
eyre = "0.6.11"
futures = "0.3.30"
lazy_static = "1.4.0" #TODO: why do we have this
num-bigfloat = "1.7.0"
regex = "1.9.1"
ruint = "1.11.1"
serde = "1.0.176"
serde_json = "1.0.104"
thiserror = "1.0.55"
tokio = { version = "1.29.1", features = ["full"] }
tokio-stream = "0.1.14"
tracing = "0.1.40"
uniswap_v3_math = { git = "https://github.com/0xKitsune/uniswap-v3-math.git", branch = "main" } #TODO: publish updated crate, move to ruint
#TODO: use telemetry batteries, update to have prometheus battery
[features]
default = ["filters", "state-space"]
filters = []
state-space = ["arraydeque"]
[dev-dependencies]
tracing-subscriber = "0.3.17"