Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 145 additions & 11 deletions aggregation_mode/Cargo.lock

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

1 change: 1 addition & 0 deletions aggregation_mode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ aligned-sdk = { path = "../crates/sdk/" }
db = { path = "./db" }
sp1-sdk = "5.0.0"
risc0-zkvm = { version = "3.0.3" }
prometheus = { version = "0.13.4", features = ["process"] }

[profile.release]
opt-level = 3
2 changes: 2 additions & 0 deletions aggregation_mode/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2021"
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
prometheus = { workspace = true }
agg_mode_sdk = { path = "../sdk"}
aligned-sdk = { workspace = true }
sp1-sdk = { workspace = true }
Expand All @@ -15,6 +16,7 @@ tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
bincode = "1.3.3"
actix-web = "4"
actix-multipart = "0.7.2"
actix-web-prometheus = "0.1.0-beta.8"
alloy = { workspace = true }
tokio = { version = "1", features = ["time"]}
# TODO: enable tls
Expand Down
1 change: 1 addition & 0 deletions aggregation_mode/gateway/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pub struct Config {
pub db_connection_url: String,
pub network: String,
pub max_daily_proofs_per_user: i64,
pub gateway_metrics_port: u16,
}

impl Config {
Expand Down
Loading
Loading