41 lines
931 B
TOML
41 lines
931 B
TOML
[package]
|
|
name = "relay"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Play-DVV relay server"
|
|
license = "MIT"
|
|
authors = ["Play-DVV Team <ops@dvv.one>"]
|
|
|
|
[package.metadata.deb]
|
|
maintainer = "Play-DVV Team <ops@dvv.one>"
|
|
section = "net"
|
|
priority = "optional"
|
|
assets = [
|
|
["target/release/relay", "usr/bin/relay", "755"]
|
|
]
|
|
|
|
[package.metadata.rpm]
|
|
package = "relay"
|
|
assets = [
|
|
{ source = "target/release/relay", dest = "/usr/bin/relay", mode = "755" }
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
uuid.workspace = true
|
|
fastrand.workspace = true
|
|
redis.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
serde.workspace = true
|
|
metrics.workspace = true
|
|
metrics-exporter-prometheus.workspace = true
|
|
common = { path = "../common" }
|
|
quinn.workspace = true
|
|
rustls.workspace = true
|
|
rcgen.workspace = true
|
|
rustls-pemfile.workspace = true
|