Add src-tauri/Cargo.toml

This commit is contained in:
Zac Gaetano 2026-03-31 15:30:00 -04:00
parent c77479d0ce
commit d27481bcbd

25
src-tauri/Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[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"]