mirror of
https://github.com/aljazceru/pubky-core.git
synced 2026-01-19 05:54:28 +01:00
22 lines
626 B
TOML
22 lines
626 B
TOML
[package]
|
|
name = "http-relay"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["Nuh <nuh@nuh.dev>"]
|
|
description = "A Rust implementation of _some_ of [Http relay spec](https://httprelay.io/)."
|
|
license = "MIT"
|
|
homepage = "https://github.com/pubky/pubky-core"
|
|
repository = "https://github.com/pubky/pubky-core"
|
|
keywords = ["httprelay", "http", "relay"]
|
|
categories = ["web-programming"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
axum = "0.8.1"
|
|
axum-server = "0.7.1"
|
|
futures-util = "0.3.31"
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
tracing = "0.1.41"
|
|
url = "2.5.4"
|
|
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
|