2023-04-03 05:35:11 +00:00
|
|
|
[package]
|
|
|
|
name = "watch"
|
|
|
|
version = "0.1.0"
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2023-04-03 05:35:11 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "watch"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "watch"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
clap = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
eth2 = { workspace = true }
|
|
|
|
beacon_node = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2023-07-17 00:14:15 +00:00
|
|
|
axum = "0.6.18"
|
2023-09-22 04:30:56 +00:00
|
|
|
hyper = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
2023-04-03 05:35:11 +00:00
|
|
|
diesel = { version = "2.0.2", features = ["postgres", "r2d2"] }
|
|
|
|
diesel_migrations = { version = "2.0.0", features = ["postgres"] }
|
2023-09-22 04:30:56 +00:00
|
|
|
byteorder = { workspace = true }
|
|
|
|
bls = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
|
|
|
r2d2 = { workspace = true }
|
|
|
|
serde_yaml = { workspace = true }
|
2023-04-03 05:35:11 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio-postgres = "0.7.5"
|
2023-09-22 04:30:56 +00:00
|
|
|
http_api = { workspace = true }
|
|
|
|
beacon_chain = { workspace = true }
|
|
|
|
network = { workspace = true }
|
2023-08-28 00:55:28 +00:00
|
|
|
# TODO: update to 0.15 when released: https://github.com/testcontainers/testcontainers-rs/issues/497
|
|
|
|
testcontainers = { git = "https://github.com/testcontainers/testcontainers-rs/", rev = "0f2c9851" }
|
2023-09-22 04:30:56 +00:00
|
|
|
unused_port = { workspace = true }
|
|
|
|
task_executor = { workspace = true }
|
|
|
|
logging = { workspace = true }
|