mirror of
https://github.com/readest/readest.git
synced 2026-04-30 20:41:02 +00:00
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "Readest"
|
|
version = "0.2.0"
|
|
description = "Your online library"
|
|
authors = ["Bilingify LLC"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.71"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "readestlib"
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.3", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
# FIXME: remove the devtools feature in production
|
|
tauri = { version = "2.1.1", features = [ "protocol-asset", "devtools"] }
|
|
tauri-build = "2.0.3"
|
|
tauri-plugin-log = "2.0.2"
|
|
tauri-plugin-fs = "2.0.3"
|
|
tauri-plugin-dialog = "2.0.3"
|
|
tauri-plugin-os = "2.0.1"
|
|
tauri-plugin-http = "2.0.3"
|
|
tauri-plugin-devtools = "2.0.0"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-process = "2"
|
|
[patch.crates-io]
|
|
tauri = { path = "../../../packages/tauri/crates/tauri" }
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
cocoa = "0.25"
|
|
objc = "0.2.7"
|
|
rand = "0.8"
|
|
|
|
[target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
|
|
tauri-plugin-cli = "2"
|
|
tauri-plugin-updater = "2"
|