[package]
edition = "2024"
rust-version = "1.90"
name = "miden-node-ntx-builder"
version = "0.13.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Miden node's network transaction builder component"
homepage = "https://miden.xyz"
readme = "README.md"
keywords = [
"miden",
"node",
]
license = "MIT"
repository = "https://github.com/0xMiden/miden-node"
resolver = "2"
[lib]
name = "miden_node_ntx_builder"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.indexmap]
version = "2.12"
[dependencies.miden-node-proto]
version = "0.13"
[dependencies.miden-node-utils]
version = "0.13"
[dependencies.miden-protocol]
version = "0.13"
default-features = true
[dependencies.miden-remote-prover-client]
version = "0.13"
features = ["tx-prover"]
[dependencies.miden-tx]
version = "0.13"
default-features = true
[dependencies.thiserror]
version = "2.0"
default-features = false
[dependencies.tokio]
version = "1.46"
features = [
"rt-multi-thread",
"rt-multi-thread",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tonic]
version = "0.14"
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dev-dependencies.miden-node-utils]
version = "0.13"
features = ["testing"]
[dev-dependencies.miden-protocol]
version = "0.13"
features = ["testing"]
default-features = true
[dev-dependencies.miden-standards]
version = "0.13"
[dev-dependencies.rstest]
version = "0.26"
[lints.clippy]
cast_possible_truncation = "allow"
collapsible-if = "allow"
from_iter_instead_of_collect = "allow"
ignored_unit_patterns = "allow"
large_types_passed_by_value = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_for_each = "allow"
should_panic_without_expect = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1