mirror of
https://github.com/Xinrea/bili-shadowreplay.git
synced 2025-11-24 20:15:34 +08:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "bili-shadowreplay"
|
|
version = "0.0.3"
|
|
description = "BiliBili ShadowReplay"
|
|
authors = ["Xinrea"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5.4", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.7.0", features = [ "dialog-all", "fs-all", "http-all", "protocol-asset", "shell-open", "system-tray"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
serde_derive = "1.0.158"
|
|
serde = "1.0.158"
|
|
m3u8-rs = "5.0.3"
|
|
async-std = "1.12.0"
|
|
futures = "0.3.28"
|
|
ffmpeg-sidecar = "1.1"
|
|
sqlite = "0.30.4"
|
|
chrono = "0.4.24"
|
|
toml = "0.7.3"
|
|
custom_error = "1.9.2"
|
|
felgens = { git = "https://github.com/Xinrea/felgens.git", branch = "master" }
|
|
regex = "1.7.3"
|
|
tokio = "1.27.0"
|
|
platform-dirs = "0.3.0"
|
|
pct-str = "1.2.0"
|
|
md5 = "0.7.0"
|
|
notify-rust = "4.8.0"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
dashmap = "6.1.0"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|