forked from propeller-heads/tycho-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (71 loc) · 2.19 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (71 loc) · 2.19 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "tycho-simulation"
version = "0.71.0"
edition = "2021"
[workspace]
members = ["tycho_simulation_py"]
[dependencies]
# Serialization/Deserialization
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0.105"
uuid = { version = "1.4.1", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }
hex = "0.4.3"
chrono = { version = "0.4.26", features = ["serde"] }
# Error handling
thiserror = "1"
# Async & concurrency
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.31"
# Logging & Tracing
tracing = "0.1.37"
# Utility
num-traits = "0.2.17"
dotenv = "0.15.0"
itertools = "0.10.5"
# Enum utilities
strum = "0.25.0"
strum_macros = "0.25.2"
# Caching
mini-moka = "0.10"
lazy_static = "1.4.0"
# Tycho dependencies
tycho-core = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-core", tag = "0.46.0" }
tycho-client = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-client", tag = "0.46.0" }
# EVM dependencies
foundry-config = { git = "https://github.com/foundry-rs/foundry", rev = "57bb12e", optional = true }
foundry-evm = { git = "https://github.com/foundry-rs/foundry", rev = "57bb12e", optional = true }
alloy-primitives = { version = "0.8.9", features = [
"getrandom",
"rand",
"map-foldhash",
] }
alloy-sol-types = { version = "0.8.14" }
alloy = { version = "0.5.4", features = ["providers"] }
revm = { version = "17.1.0", features = ["ethersdb", "serde"], optional = true }
revm-inspectors = { version = "0.10", features = ["serde"], optional = true }
num-bigint = "0.4.6"
tokio-stream = "0.1.16"
[dev-dependencies]
tokio-test = "0.4.4"
approx = "0.5.1"
rstest = "0.23.0"
tracing-subscriber = { version = "0.3.17", default-features = false, features = [
"env-filter",
"fmt",
] }
tempfile = "3.13.0"
# price_printer example
clap = { version = "4.5.3", features = ["derive"] }
anyhow = "1.0.79"
ratatui = "0.29.0"
crossterm = { version = "0.28.1", features = ["event-stream"] }
unicode-width = "0.1.13"
tracing-appender = "0.2.3"
[features]
default = ["evm"]
network_tests = []
evm = [
"dep:foundry-config", "dep:foundry-evm", "dep:revm", "dep:revm-inspectors"
]
[profile.bench]
debug = true