Files
bili-shadowreplay/src-tauri/Cargo.toml

56 lines
1.6 KiB
TOML
Raw Normal View History

2023-04-08 15:33:41 +08:00
[package]
name = "bili-shadowreplay"
2023-04-08 17:42:00 +08:00
version = "0.0.3"
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]
tauri-build = { version = "2.0.1", features = [] }
2023-04-08 15:33:41 +08:00
[dependencies]
tauri = { version = "2.0.1", 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"
m3u8-rs = "5.0.3"
async-std = "1.12.0"
futures = "0.3.28"
2024-08-29 15:02:35 +08:00
ffmpeg-sidecar = "1.1"
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"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
tauri-plugin-dialog = "2.0.1"
tauri-plugin-shell = "2.0.1"
tauri-plugin-fs = "2.0.1"
tauri-plugin-http = "2.0.1"
tauri-utils = "2.0.1"
tauri-plugin-sql = { version = "2.0.1", features = ["sqlite"] }
tauri-plugin-os = "2.0.1"
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]
tauri-plugin-single-instance = "2.0.1"