Sync docs to Wiki / wiki (push) Has been cancelled
Signed-off-by: Stan Grams <sjg@haxx.space>
32 lines
781 B
TOML
32 lines
781 B
TOML
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
[package]
|
|
name = "trx-frontend-http"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
trx-core = { path = "../../../trx-core" }
|
|
trx-frontend = { path = ".." }
|
|
trx-protocol = { path = "../../../../src/trx-protocol" }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
base64 = "0.22"
|
|
actix-web = "4.4"
|
|
actix-ws = "0.3"
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
futures-util = "0.3"
|
|
bytes = "1"
|
|
flate2 = { workspace = true }
|
|
brotli = "7"
|
|
rand = "0.8"
|
|
hex = "0.4"
|
|
pickledb = "0.5"
|
|
dirs = "6"
|
|
uuid = { workspace = true }
|