From 43944b0e34c98c81395f1311fb9f72af4b20aaa5 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Fri, 30 Aug 2024 16:02:11 +0200 Subject: [PATCH] fix: features in main crate were bad --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a7b63d6..ee61571 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] }