summaryrefslogtreecommitdiff
path: root/src/rebar_state.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-22 09:13:10 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-22 20:24:21 -0600
commitaf35d5f0a2c91319fc86c5bb4a9d018658519c4c (patch)
tree81513a265a2710a36a83b69e0758c3fcd0d5b61a /src/rebar_state.erl
parentf22db1302d710fbf017108852991cd6ac538de17 (diff)
replace rlx_depsolver use with new rebar_digraph
Diffstat (limited to 'src/rebar_state.erl')
-rw-r--r--src/rebar_state.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_state.erl b/src/rebar_state.erl
index f39251d..7ed29fa 100644
--- a/src/rebar_state.erl
+++ b/src/rebar_state.erl
@@ -28,7 +28,7 @@
src_deps = [],
src_apps = [],
- pkg_deps = [] :: [rlx_depsolver:constraint()],
+ pkg_deps = [] :: [rebar_packages:constraint()],
project_apps = [],
providers = []}).
@@ -103,7 +103,7 @@ deps_names(State) ->
ec_cnv:to_binary(Dep)
end, Deps).
--spec pkg_deps(t()) -> [rlx_depsolver:constraint()].
+-spec pkg_deps(t()) -> [rebar_packages:constraint()].
pkg_deps(#state_t{pkg_deps=PkgDeps}) ->
PkgDeps.