mirror of
https://github.com/aljazceru/pubky-core.git
synced 2026-02-23 15:04:39 +01:00
22 lines
597 B
TOML
22 lines
597 B
TOML
[package]
|
|
name = "http-relay"
|
|
description = "A Rust implementation of _some_ of [Http relay spec](https://httprelay.io/)."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
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"] }
|