-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 899 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 899 Bytes
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
[package]
name = "multiplexer-evm"
version = "0.1.1"
edition = "2021"
build = "build.rs" # Build the solidity contracts
authors = ["BitFinding"]
description = "A Rust library and Solidity contracts for building and executing complex EVM transaction sequences, including flash loans."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/BitFinding/multiplexer"
repository = "https://github.com/BitFinding/multiplexer"
keywords = ["ethereum", "solidity", "evm", "mev", "flashloan"]
categories = ["cryptography::cryptocurrencies", "development-tools::build-utils"]
readme = "README.md"
[dependencies]
alloy-primitives = { version = "1.5.2" }
[dev-dependencies]
tokio = { version = "1.49", features = ["rt", "macros"] }
alloy = { version = "1.7", features = ["full", "node-bindings"] }
[build-dependencies]
hex = "0.4.3"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"