fix: features in main crate were bad
cargo devel CI / cargo CI (push) Failing after 1m42s Details

This commit is contained in:
Christoph J. Scherr 2024-08-30 16:02:11 +02:00
parent b8acb7300e
commit 43944b0e34
1 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ default = ["log", "core"]
core = []
full = ["default", "core", "log", "bintols"]
log = ["dep:libpt-log"]
log-crate = ["libpt-cli/log"]
bintols = ["dep:libpt-bintols", "log"]
cli = ["dep:libpt-cli", "core", "log"]
@ -58,4 +59,4 @@ crate-type = [
libpt-core = { workspace = true }
libpt-bintols = { workspace = true, optional = true }
libpt-log = { workspace = true, optional = true }
libpt-cli = { workspace = true, optional = true }
libpt-cli = { workspace = true, optional = true, features = ["log"] }