Cargo Features

[dependencies]
xcodebuild = { version = "0.1.10", default-features = false, features = ["with_regex", "manual", "with_tracing"] }
default = manual

The manual feature is set by default whenever xcodebuild is added without default-features = false somewhere in the dependency tree.

with_regex = regex
manual default = with_tracing

Affects xcodebuild::runner

with_tracing manual = tracing, tracing-appender, tracing-subscriber

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

regex with_regex?
tracing with_tracing?

Enables tracing

Tracing

tracing-appender with_tracing?
tracing-subscriber with_tracing?