mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-04-11 13:43:08 +00:00
24 lines
789 B
TOML
24 lines
789 B
TOML
[package]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "pubsub-node"
|
|
version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "pubsub-node"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
axum = { version = "0.7", features = ["ws"] }
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
futures-util = "0.3"
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|