21 lines
447 B
TOML
21 lines
447 B
TOML
[package]
|
|
name = "iptv-desktop"
|
|
version = "1.0.0"
|
|
description = "IPTV Player"
|
|
authors = ["ghr"]
|
|
license = "MIT"
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.5.0", features = ["shell-open"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|