You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[dependencies]
foo = []
bar = ["foo"]
foobar = ["bar"]
The combos ["foobar", "bar"], ["foobar", "foo"] & ["bar", "foo"] should be omitted, since they're implied by the dependency graph. They should be automatically treated as
[[rule]]
when = "foobar"
require = ["foo", "bar"]
[[rule]]
when = "foo"
require = ["bar"]
The text was updated successfully, but these errors were encountered:
I'm willing to try and contribute a fix, just wanted to make sure - are you
allocation-shy, or is it ok to build a dependency tree with lots of cloned
strings?
The combos ["foobar", "bar"], ["foobar", "foo"] & ["bar", "foo"] should be omitted, since they're implied by the dependency graph. They should be automatically treated as
The text was updated successfully, but these errors were encountered: