38552a0c2e
* added current time to desktop bar * added time prototype to footer, needs code cleanup and settings toggle * fixed settings toggle, added translations and code cleanup * added battery support and moved Statusbar to own Component * #3306 added 24 hour clock support * refactored code styling and getting rid of any type in battery hook * Add battery info for Tauri Apps --------- Co-authored-by: Huang Xin <chrox.huang@gmail.com>
77 lines
2.1 KiB
TOML
77 lines
2.1 KiB
TOML
[package]
|
|
name = "Readest"
|
|
version = "0.2.2"
|
|
description = "Your online library"
|
|
authors = ["Bilingify LLC"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "readestlib"
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[features]
|
|
# Internal feature to suppress warnings from old objc crate
|
|
cargo-clippy = []
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
thiserror = "2"
|
|
walkdir = "2"
|
|
tokio = { version = "1", features = ["fs"] }
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
futures-util = "0.3"
|
|
futures = "0.3.31"
|
|
read-progress-stream = "1.0.0"
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
"json",
|
|
"stream",
|
|
] }
|
|
tauri = { version = "2", features = [ "protocol-asset" ] }
|
|
tauri-build = "2"
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-os = "2"
|
|
tauri-plugin-http = { version = "2", features = ["dangerous-settings"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-oauth = "2"
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-deep-link = "2"
|
|
tauri-plugin-sign-in-with-apple = "1.0.2"
|
|
tauri-plugin-haptics = "2"
|
|
tauri-plugin-persisted-scope = "2"
|
|
tauri-plugin-native-bridge = { path = "./plugins/tauri-plugin-native-bridge" }
|
|
tauri-plugin-native-tts = { path = "./plugins/tauri-plugin-native-tts" }
|
|
tauri-plugin-websocket = "2"
|
|
tauri-plugin-sharekit = "0.3"
|
|
tauri-plugin-device-info = "1.0.1"
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
rand = "0.8"
|
|
cocoa = "0.25"
|
|
objc = "0.2.7"
|
|
objc-foundation = "0.1.1"
|
|
objc_id = "0.1.1"
|
|
block = "0.1.6"
|
|
objc2 = "0.6"
|
|
objc2-authentication-services = "0.3"
|
|
objc2-foundation = { version = "0.3", features = ["NSError", "NSArray"] }
|
|
|
|
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
|
|
tauri-plugin-cli = "2"
|
|
tauri-plugin-single-instance = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-window-state = "2"
|
|
discord-rich-presence = "1.0.0"
|