2023-04-08 15:33:41 +08:00
|
|
|
[package]
|
|
|
|
|
name = "bili-shadowreplay"
|
2024-10-19 04:27:43 +08:00
|
|
|
version = "1.0.0"
|
2024-09-01 13:04:14 +08:00
|
|
|
description = "BiliBili ShadowReplay"
|
2023-04-08 15:33:41 +08:00
|
|
|
authors = ["Xinrea"]
|
|
|
|
|
license = ""
|
|
|
|
|
repository = ""
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-12-01 19:00:43 +08:00
|
|
|
tauri-build = { version = "2", features = [] }
|
2023-04-08 15:33:41 +08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-01 19:00:43 +08:00
|
|
|
tauri = { version = "2", features = ["protocol-asset", "tray-icon"] }
|
2023-04-08 15:33:41 +08:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
|
|
|
serde_derive = "1.0.158"
|
|
|
|
|
serde = "1.0.158"
|
2024-10-14 16:57:55 +08:00
|
|
|
sysinfo = "0.32.0"
|
2023-04-08 15:33:41 +08:00
|
|
|
m3u8-rs = "5.0.3"
|
|
|
|
|
async-std = "1.12.0"
|
2024-08-31 02:22:15 +08:00
|
|
|
futures = "0.3.28"
|
2024-10-21 04:57:24 +08:00
|
|
|
ffmpeg-sidecar = "1.2.0"
|
2024-09-23 16:26:07 +08:00
|
|
|
chrono = { version = "0.4.24", features = ["serde"] }
|
2023-04-08 15:33:41 +08:00
|
|
|
toml = "0.7.3"
|
|
|
|
|
custom_error = "1.9.2"
|
2024-09-22 20:53:36 +08:00
|
|
|
felgens = { git = "https://github.com/Xinrea/felgens.git", tag = "v0.4.1" }
|
2023-04-08 15:33:41 +08:00
|
|
|
regex = "1.7.3"
|
|
|
|
|
tokio = "1.27.0"
|
2023-04-08 17:42:00 +08:00
|
|
|
platform-dirs = "0.3.0"
|
2023-05-25 00:32:55 +08:00
|
|
|
pct-str = "1.2.0"
|
|
|
|
|
md5 = "0.7.0"
|
2023-05-26 16:15:22 +08:00
|
|
|
notify-rust = "4.8.0"
|
2024-09-09 02:46:42 +08:00
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
|
|
|
dashmap = "6.1.0"
|
2024-09-13 01:40:34 +08:00
|
|
|
urlencoding = "2.1.3"
|
|
|
|
|
log = "0.4.22"
|
|
|
|
|
simplelog = "0.12.2"
|
2024-10-09 15:00:28 +08:00
|
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
|
2024-12-01 19:00:43 +08:00
|
|
|
tauri-plugin-dialog = "2"
|
|
|
|
|
tauri-plugin-shell = "2"
|
|
|
|
|
tauri-plugin-fs = "2"
|
|
|
|
|
tauri-plugin-http = "2"
|
|
|
|
|
tauri-utils = "2"
|
|
|
|
|
tauri-plugin-sql = { version = "2", features = ["sqlite"] }
|
|
|
|
|
tauri-plugin-os = "2"
|
2024-10-19 04:12:37 +08:00
|
|
|
tauri-plugin-notification = "2"
|
2024-11-21 15:56:25 +08:00
|
|
|
rand = "0.8.5"
|
2025-03-06 12:32:59 +08:00
|
|
|
base64 = "0.21"
|
|
|
|
|
mime_guess = "2.0"
|
2023-04-08 15:33:41 +08:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
|
|
|
# DO NOT REMOVE!!
|
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2024-09-22 20:53:36 +08:00
|
|
|
|
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
2024-12-01 19:00:43 +08:00
|
|
|
tauri-plugin-single-instance = "2"
|