15 march works with app

This commit is contained in:
2026-03-15 23:47:15 +07:00
parent 102099e1cd
commit 7dbfaec60d
38 changed files with 659 additions and 542 deletions
+26
View File
@@ -0,0 +1,26 @@
[package]
name = "netrunner-logger"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib", "rlib", "staticlib"]
[dependencies]
log = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[target.'cfg(target_os = "android")'.dependencies]
tracing-android = "0.2"
[features]
default = []
desktop = ["linux", "windows"]
mobile = ["android", "ios"]
linux = []
windows = []
android = []
ios = []