Add src-tauri/Cargo.toml
This commit is contained in:
parent
c77479d0ce
commit
d27481bcbd
1 changed files with 25 additions and 0 deletions
25
src-tauri/Cargo.toml
Normal file
25
src-tauri/Cargo.toml
Normal 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"]
|
||||||
Loading…
Reference in a new issue