mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com> Co-authored-by: FabianLars <fabianlars@fabianlars.de> Co-authored-by: Fabian-Lars <github@fabianlars.de>
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "tauri-plugin-log"
|
|
version = "2.2.0"
|
|
description = "Configurable logging for your Tauri app."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
repository = { workspace = true }
|
|
links = "tauri-plugin-log"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.platforms.support]
|
|
windows = { level = "full", notes = "" }
|
|
linux = { level = "full", notes = "" }
|
|
macos = { level = "full", notes = "" }
|
|
android = { level = "unknown", notes = "" }
|
|
ios = { level = "unknown", notes = "" }
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = ["build"] }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde_repr = "0.1"
|
|
byte-unit = "5"
|
|
log = { workspace = true, features = ["kv_unstable"] }
|
|
time = { version = "0.3", features = ["formatting", "local-offset"] }
|
|
fern = "0.7"
|
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
|
android_logger = "0.14"
|
|
|
|
[target."cfg(target_os = \"ios\")".dependencies]
|
|
swift-rs = "1"
|
|
objc = "0.2"
|
|
cocoa = "0.26"
|
|
|
|
[features]
|
|
colored = ["fern/colored"]
|