[package]
edition = "2024"
name = "moonpool-sim"
version = "0.4.0"
authors = ["Pierre Zemb <contact@pierrezemb.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simulation engine for the moonpool framework"
documentation = "https://docs.rs/moonpool-sim"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/PierreZ/moonpool"
resolver = "2"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"tokio_unstable",
]
rustc-args = [
"--cfg",
"tokio_unstable",
]
[lib]
name = "moonpool_sim"
path = "src/lib.rs"
[[test]]
name = "chaos"
path = "tests/chaos.rs"
[[test]]
name = "exploration"
path = "tests/exploration.rs"
[[test]]
name = "hyper_http"
path = "tests/hyper_http.rs"
[[test]]
name = "network"
path = "tests/network.rs"
[[test]]
name = "sim"
path = "tests/sim.rs"
[[test]]
name = "storage"
path = "tests/storage.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.crc32c]
version = "0.6"
[dependencies.futures]
version = "0.3"
[dependencies.moonpool-core]
version = "0.4.0"
[dependencies.moonpool-explorer]
version = "0.4.0"
[dependencies.rand]
version = "0.10"
[dependencies.rand_chacha]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"full",
"tracing",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper]
version = "1"
features = [
"http1",
"server",
"client",
]
[dev-dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing-subscriber]
version = "0.3"