Skip to content

Commit bccb538

Browse files
Update docs and add reflection
1 parent e211136 commit bccb538

6 files changed

Lines changed: 109 additions & 301 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ install-node: ## Installs node
107107

108108
.PHONY: install-remote-prover
109109
install-remote-prover: ## Install remote prover's CLI
110-
$(BUILD_PROTO) cargo install --path bin/remote-prover --bin miden-remote-prover --features concurrent --locked
110+
$(BUILD_PROTO) cargo install --path bin/remote-prover --bin miden-remote-prover --locked
111111

112112
.PHONY: stress-test-smoke
113113
stress-test: ## Runs stress-test benchmarks

bin/remote-prover/Cargo.toml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,30 @@ version.workspace = true
1515
workspace = true
1616

1717
[dependencies]
18-
anyhow = { workspace = true }
19-
async-trait = { version = "0.1" }
20-
clap = { features = ["env"], workspace = true }
21-
http = { workspace = true }
22-
humantime = { workspace = true }
23-
miden-block-prover = { workspace = true }
24-
miden-node-proto = { workspace = true }
25-
miden-node-utils = { workspace = true }
26-
miden-protocol = { features = ["std"], workspace = true }
27-
miden-tx = { features = ["concurrent", "std"], workspace = true }
28-
miden-tx-batch-prover = { features = ["std"], workspace = true }
29-
opentelemetry = { version = "0.31" }
30-
prost = { default-features = false, features = ["derive"], workspace = true }
31-
serde = { features = ["derive"], version = "1.0" }
32-
tokio = { features = ["full"], workspace = true }
33-
tokio-stream = { features = ["net"], version = "0.1" }
34-
tonic = { default-features = false, features = ["codegen", "router", "transport"], version = "0.14" }
35-
tonic-health = { version = "0.14" }
36-
tonic-prost = { workspace = true }
37-
tonic-web = { version = "0.14" }
38-
tower-http = { features = ["trace"], workspace = true }
39-
tracing = { workspace = true }
18+
anyhow = { workspace = true }
19+
async-trait = { version = "0.1" }
20+
clap = { features = ["env"], workspace = true }
21+
http = { workspace = true }
22+
humantime = { workspace = true }
23+
miden-block-prover = { workspace = true }
24+
miden-node-proto = { workspace = true }
25+
miden-node-proto-build = { features = ["internal"], workspace = true }
26+
miden-node-utils = { workspace = true }
27+
miden-protocol = { features = ["std"], workspace = true }
28+
miden-tx = { features = ["concurrent", "std"], workspace = true }
29+
miden-tx-batch-prover = { features = ["std"], workspace = true }
30+
opentelemetry = { version = "0.31" }
31+
prost = { default-features = false, features = ["derive"], workspace = true }
32+
serde = { features = ["derive"], version = "1.0" }
33+
tokio = { features = ["full"], workspace = true }
34+
tokio-stream = { features = ["net"], version = "0.1" }
35+
tonic = { default-features = false, features = ["codegen", "router", "transport"], version = "0.14" }
36+
tonic-health = { version = "0.14" }
37+
tonic-prost = { workspace = true }
38+
tonic-reflection = { workspace = true }
39+
tonic-web = { version = "0.14" }
40+
tower-http = { features = ["trace"], workspace = true }
41+
tracing = { workspace = true }
4042

4143
[dev-dependencies]
4244
miden-protocol = { features = ["testing"], workspace = true }

0 commit comments

Comments
 (0)