Files
tauri-plugins-workspace/plugins/log/Cargo.toml
T
ngapham@kobiton.com 6d7b985b46 [log] Allow to use local timezone instead of UTC when writing logs (#269)
* Allow to use local timezone instead of UTC timezone when writing log

* Address PR feedback

* Fix cargo clippy

* revert `time` version

---------

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
2023-03-06 15:31:28 +01:00

23 lines
617 B
TOML

[package]
name = "tauri-plugin-log"
version = "0.1.0"
description = "Configurable logging for your Tauri app."
authors.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde.workspace = true
serde_json.workspace = true
tauri.workspace = true
serde_repr = "0.1"
byte-unit = "4.0"
fern = "0.6"
log = { workspace = true, features = ["kv_unstable"] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
[features]
colored = ["fern/colored"]