Skip to content

Commit

Permalink
feat: constraints-api-v0
Browse files Browse the repository at this point in the history
Co-authored-by: merklefruit <nicolas@chainbound.io>
Co-authored-by: mempirate <j.bostoen@chainbound.io>
Co-authored-by: namn-grg <naman@chainbound.io>
  • Loading branch information
4 people committed Nov 7, 2024
1 parent 4aace5f commit b7b2dae
Show file tree
Hide file tree
Showing 49 changed files with 3,479 additions and 512 deletions.
174 changes: 160 additions & 14 deletions Cargo.lock

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

29 changes: 17 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[workspace]
members = [
"crates/beacon-client",
"crates/api",
"crates/utils",
"crates/common",
"crates/database",
"crates/datastore",
"crates/cmd",
"crates/housekeeper",
"crates/beacon-client",
"crates/api",
"crates/utils",
"crates/common",
"crates/database",
"crates/datastore",
"crates/cmd",
"crates/housekeeper",
]
resolver = "2"

Expand All @@ -29,15 +29,20 @@ helix-utils = { path = "./crates/utils" }

# Async and Networking
async-trait = "0.1"
axum = {version = "0.7.4", features = ["ws"]}
axum = { version = "0.7.4", features = ["ws"] }
dashmap = { version = "5.5.3", features = [] }
futures = "0.3"
hyper = "1.1.0"
http = "1.0.0"
tower = { version = "0.4.13", features = ["full"] }
reqwest = { version = "0.11.23", features = ["json", "native-tls-vendored", "stream", "blocking"] }
reqwest = { version = "0.11.23", features = [
"json",
"native-tls-vendored",
"stream",
"blocking",
] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-stream = {version = "0.1.15", features = ["sync"]}
tokio-stream = { version = "0.1.15", features = ["sync"] }
tower-http = { version = "0.5.1", features = ["limit"] }
url = "2.4"

Expand All @@ -51,7 +56,7 @@ deadpool-redis = { version = "0.12.0", features = ["rt_tokio_1"] }
redis = { version = "0.23.2", features = ["aio", "tokio-comp"] }
tokio-postgres = "0.7.10"
deadpool-postgres = "0.11.0"
refinery = { version = "0.8", features = ["tokio-postgres"]}
refinery = { version = "0.8", features = ["tokio-postgres"] }
bytes = "1.5.0"
chrono = "0.4.19"

Expand Down
Loading

0 comments on commit b7b2dae

Please sign in to comment.