# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "alloy-mev" version = "0.5.0" authors = ["leruaa"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Easily send transaction bundles using Alloy. """ homepage = "https://github.com/leruaa/alloy-mev" documentation = "https://docs.rs/alloy-mev" readme = "README.md" license = "MIT" repository = "https://github.com/leruaa/alloy-mev" [package.metadata.docs.rs] cargo-args = [ "-Zunstable-options", "-Zrustdoc-scrape-examples", ] [lib] name = "alloy_mev" path = "src/lib.rs" [[example]] name = "mev_share" path = "examples/mev_share.rs" doc-scrape-examples = true required-features = ["reqwest"] [[example]] name = "send_to_builders" path = "examples/send_to_builders.rs" doc-scrape-examples = true required-features = ["reqwest"] [[test]] name = "call_eth_bundle" path = "tests/call_eth_bundle.rs" [[test]] name = "sim_mev_bundle" path = "tests/sim_mev_bundle.rs" [dependencies.alloy] version = "0.5" features = [ "rpc", "rpc-client", "rpc-types-mev", "json-rpc", "network", "providers", "transports", "transport-http", "signers", ] [dependencies.async-trait] version = "0.1" [dependencies.futures] version = "0.3" [dependencies.hyper] version = "1.4" features = ["client"] optional = true [dependencies.pin-project] version = "1.1" [dependencies.reqwest] version = "0.12" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.tower] version = "0.5" optional = true [dependencies.url] version = "2.5" [dev-dependencies.alloy] version = "0.5" features = [ "rpc-client", "consensus", "signer-local", ] [dev-dependencies.anyhow] version = "1.0" [dev-dependencies.dotenv] version = "0.15" [dev-dependencies.tokio] version = "1" features = [ "rt-multi-thread", "macros", ] [features] default = ["reqwest"] reqwest = [ "dep:reqwest", "dep:serde_json", "dep:tower", ]