26 lines
545 B
TOML
26 lines
545 B
TOML
|
|
[package]
|
||
|
|
name = "moonlight-relay"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Moonlight Relay — self-hosted streaming manager"
|
||
|
|
authors = ["Zac"]
|
||
|
|
license = "MIT"
|
||
|
|
repository = ""
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.70"
|
||
|
|
|
||
|
|
[build-dependencies]
|
||
|
|
tauri-build = { version = "1.5", features = [] }
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
tauri = { version = "1.5", features = [
|
||
|
|
"shell-sidecar",
|
||
|
|
"shell-execute",
|
||
|
|
"system-tray"
|
||
|
|
] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
custom-protocol = ["tauri/custom-protocol"]
|
||
|
|
default = ["custom-protocol"]
|