Skip to content

Commit

Permalink
feat(cli/cargo): pass through features to lib crate
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Sep 12, 2024
1 parent d7c5463 commit a732929
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ path = "src/main.rs"
[features]
default = ["all"]
all = ["accounting", "budgeting", "hello", "pricing", "quota", "resources", "user"]
accounting = []
budgeting = []
hello = []
pricing = []
quota = []
resources = []
user = []
accounting = ["lrzcc/accounting"]
budgeting = ["lrzcc/budgeting"]
hello = ["lrzcc/hello"]
pricing = ["lrzcc/pricing"]
quota = ["lrzcc/quota"]
resources = ["lrzcc/resources"]
user = ["lrzcc/user"]

[dependencies]
lrzcc = { version = "1.0", path = "../lib" }
Expand Down

0 comments on commit a732929

Please sign in to comment.