Skip to content

Commit

Permalink
fix compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
juanbono committed Oct 17, 2024
1 parent 223b4b7 commit 3a10b8c
Show file tree
Hide file tree
Showing 7 changed files with 95 additions and 13 deletions.
94 changes: 89 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions core/node/eigenda_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ anyhow.workspace = true
axum.workspace = true
tokio.workspace = true
tracing.workspace = true
prost.workspace = true
tonic.workspace = true
prost = "0.13.1"
tonic = { version = "0.12.1", features = ["tls", "channel", "tls-roots"]}
tonic-web = "0.12.1"

[build-dependencies]
tonic-build = { version = "0.12.1", features = ["prost"] }
2 changes: 1 addition & 1 deletion core/node/eigenda_proxy/build.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
fn main() {
tonic_build::configure()
.build_server(false)
.out_dir("src/client")
.out_dir("src/")
.compile_protos(&["proto/disperser/disperser.proto"], &["proto"])
.unwrap();
}
4 changes: 0 additions & 4 deletions core/node/eigenda_proxy/src/client.rs

This file was deleted.

File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion core/node/eigenda_proxy/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
mod client;
mod common;
mod disperser;

use std::net::SocketAddr;
use anyhow::Context as _;
Expand Down

0 comments on commit 3a10b8c

Please sign in to comment.