Avoid oslog on iOS simulator builds
Some checks failed
Build Rust / Cargo Test (push) Waiting to run
Build Site / Next.js Build (push) Waiting to run
Build Apple / Build App (iOS Simulator) (push) Failing after 2m10s
Build Apple / Build App (macOS) (push) Failing after 2m9s

This commit is contained in:
Conrad Kramer 2026-03-19 03:42:12 -07:00
parent e0fe21fad8
commit 5bd95b7a7c
2 changed files with 7 additions and 2 deletions

View file

@ -25,7 +25,6 @@ tun = { version = "0.1", path = "../tun", features = ["serde", "tokio"] }
clap = { version = "4.4", features = ["derive"] }
tracing = "0.1"
tracing-log = "0.1"
tracing-oslog = { git = "https://github.com/Stormshield-robinc/tracing-oslog" }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
log = "0.4"
serde = { version = "1", features = ["derive"] }
@ -82,6 +81,9 @@ libc = "0.2"
nix = { version = "0.27", features = ["ioctl"] }
rusqlite = { version = "0.38.0", features = ["bundled", "blob"] }
[target.'cfg(target_os = "macos")'.dependencies]
tracing-oslog = { git = "https://github.com/Stormshield-robinc/tracing-oslog" }
[dev-dependencies]
insta = { version = "1.32", features = ["yaml"] }