-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (27 loc) · 940 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "dioxus-logger"
version = "0.5.1"
edition = "2021"
description = "A logging utility to provide a standard interface whether you're targetting web desktop, fullstack, and more."
authors = ["DogeDark"]
repository = "https://github.com/DogeDark/dioxus-logger"
homepage = "https://github.com/DogeDark/dioxus-logger"
readme = "README.md"
license = "MIT"
keywords = ["dioxus", "log", "logging"]
categories = ["development-tools::debugging"]
[dependencies]
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"registry",
"std",
] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tracing-wasm = "0.2.1"
console_error_panic_hook = "0.1.7"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"fmt",
] }
[dev-dependencies]
dioxus = { version = "0.5", features = ["desktop"] }