29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "cerulea_relay"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.93"
|
|
atrium-api = { version = "0.24.8", default-features = false, features = ["tokio"] }
|
|
bytes = { version = "1.8.0", features = ["serde"] }
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
fastwebsockets = { version = "0.8.0", features = ["hyper", "unstable-split", "upgrade"] }
|
|
http-body-util = "0.1.2"
|
|
hyper = { version = "1.5.1", features = ["client", "full", "http1", "http2", "server"] }
|
|
hyper-util = { version = "0.1.10", features = ["tokio", "server", "client", "http1", "http2"] }
|
|
ipld-core = "0.4.1"
|
|
pin-project-lite = "0.2.15"
|
|
qstring = "0.7.2"
|
|
rustls = "0.23.18"
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
serde_ipld_dagcbor = "0.6.1"
|
|
serde_json = "1.0.133"
|
|
sled = { version = "0.34.7", features = ["compression"] }
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
tokio-rustls = "0.26.0"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|
|
webpki-roots = "0.26.7"
|