mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-08 04:13:59 -05:00
* clippy fixes * fmt fixes * mirgrate to 2024 and fix workspace warning * fix profile * rustfmt --------- Co-authored-by: sinu <65924192+sinui0@users.noreply.github.com>
19 lines
557 B
TOML
19 lines
557 B
TOML
[package]
|
|
name = "websocket-relay"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["TLSNotary Contributors"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/tlsnotary/tlsn-utils"
|
|
description = """A relay for websocket clients."""
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
form_urlencoded = "1.2"
|
|
futures = { workspace = true }
|
|
once_cell = "1.19"
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-tungstenite = { version = "0.23", features = ["url"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|