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

80 lines
2.4 KiB
TOML
Raw Normal View History

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
[dependencies]
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde_derive = "1.0.158"
serde = "1.0.158"
sysinfo = "0.32.0"
2023-04-08 15:33:41 +08:00
m3u8-rs = "5.0.3"
async-std = "1.12.0"
async-ffmpeg-sidecar = "0.0.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"
felgens = { git = "https://github.com/Xinrea/felgens.git", tag = "v0.4.2" }
2023-04-08 15:33:41 +08:00
regex = "1.7.3"
tokio = { version = "1.27.0", features = ["process"] }
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"
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"] }
rand = "0.8.5"
2025-03-06 12:32:59 +08:00
base64 = "0.21"
mime_guess = "2.0"
2025-03-10 19:01:11 +08:00
async-trait = "0.1.87"
whisper-rs = "0.14.2"
hound = "3.5.1"
uuid = { version = "1.4", features = ["v4"] }
2025-04-28 21:25:35 +08:00
axum = { version = "0.7", features = ["macros"] }
2025-04-29 17:48:50 +08:00
tower-http = { version = "0.5", features = ["cors", "fs", "limit"] }
2025-04-28 21:25:35 +08:00
futures-core = "0.3"
2025-04-29 17:48:50 +08:00
futures = "0.3"
2025-04-29 14:32:11 +08:00
tokio-util = { version = "0.7", features = ["io"] }
2025-04-30 02:27:22 +08:00
clap = { version = "4.5.37", features = ["derive"] }
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"]
2025-03-29 11:19:01 +08:00
cuda = ["whisper-rs/cuda"]
2025-04-28 21:25:35 +08:00
headless = []
2024-09-22 20:53:36 +08:00
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2"
2025-03-29 11:19:01 +08:00
[target.'cfg(windows)'.dependencies]
whisper-rs = { version = "0.14.2", default-features = false }
[target.'cfg(darwin)'.dependencies.whisper-rs]
version = "0.14.2"
features = ["metal"]
2025-04-30 02:27:22 +08:00
[target.'cfg(not(feature = "headless"))'.dependencies]
tauri = { version = "2", features = ["protocol-asset", "tray-icon"] }
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"
tauri-plugin-notification = "2"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
[target.'cfg(not(feature = "headless"))'.build-dependencies]
tauri-build = { version = "2", features = [] }