[package]
edition = "2021"
name = "tndrly"
version = "0.3.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust client for the Tenderly API - simulations, virtual testnets, alerts, and more"
readme = "README.md"
keywords = [
"tenderly",
"ethereum",
"simulation",
"blockchain",
"web3",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/yldfi/yldfi-rs/tree/main/crates/tndrly"
[lib]
name = "tndrly"
path = "src/lib.rs"
[[example]]
name = "debug_alerts"
path = "examples/debug_alerts.rs"
[[example]]
name = "debug_contracts"
path = "examples/debug_contracts.rs"
[[example]]
name = "debug_vnets"
path = "examples/debug_vnets.rs"
[[example]]
name = "test_admin_rpc"
path = "examples/test_admin_rpc.rs"
[[example]]
name = "test_all_endpoints"
path = "examples/test_all_endpoints.rs"
[[example]]
name = "test_vnet_transactions"
path = "examples/test_vnet_transactions.rs"
[[example]]
name = "test_write_operations"
path = "examples/test_write_operations.rs"
[[test]]
name = "admin_rpc_integration"
path = "tests/admin_rpc_integration.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "test_all_apis"
path = "tests/test_all_apis.rs"
[[test]]
name = "test_connection"
path = "tests/test_connection.rs"
[[test]]
name = "test_contracts_api"
path = "tests/test_contracts_api.rs"
[[test]]
name = "test_more_endpoints"
path = "tests/test_more_endpoints.rs"
[[test]]
name = "test_networks"
path = "tests/test_networks.rs"
[dependencies.percent-encoding]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.secrecy]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.url]
version = "2"
[dependencies.yldfi-common]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"