[package]
edition = "2024"
rust-version = "1.90"
name = "miden-node-rpc"
version = "0.13.5"
authors = ["Miden contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Miden node's front-end RPC server"
homepage = "https://miden.xyz"
readme = "README.md"
keywords = [
"miden",
"node",
"rpc",
]
license = "MIT"
repository = "https://github.com/0xMiden/miden-node"
resolver = "2"
[lib]
name = "miden_node_rpc"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1.3"
[dependencies.mediatype]
version = "0.21"
[dependencies.miden-node-proto]
version = "0.13"
[dependencies.miden-node-proto-build]
version = "0.13"
[dependencies.miden-node-utils]
version = "0.13"
[dependencies.miden-protocol]
version = "0.13"
default-features = true
[dependencies.miden-tx]
version = "0.13"
default-features = true
[dependencies.semver]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
default-features = false
[dependencies.tokio]
version = "1.46"
features = [
"rt-multi-thread",
"macros",
"net",
"rt-multi-thread",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["net"]
[dependencies.tonic]
version = "0.14"
features = [
"tls-native-roots",
"tls-ring",
]
default-features = true
[dependencies.tonic-reflection]
version = "0.14"
[dependencies.tonic-web]
version = "0.14"
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dev-dependencies.miden-air]
version = "0.20"
features = [
"std",
"testing",
"testing",
]
[dev-dependencies.miden-node-store]
version = "0.13"
[dev-dependencies.miden-node-utils]
version = "0.13"
features = [
"testing",
"tracing-forest",
]
[dev-dependencies.miden-protocol]
version = "0.13"
features = ["testing"]
default-features = true
[dev-dependencies.miden-standards]
version = "0.13"
[dev-dependencies.reqwest]
version = "0.12"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tempfile]
version = "3.20"
[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