summaryrefslogtreecommitdiff
path: root/src/rebar_state.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-22 09:27:47 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-22 20:24:21 -0600
commit3e01e3e46d84e09946d347c3115db528bc88396c (patch)
tree50963e25a6e6f2380fd2a5ac96897fb9de103779 /src/rebar_state.erl
parentaf35d5f0a2c91319fc86c5bb4a9d018658519c4c (diff)
replace rlx_depsolver types with new package types
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 7ed29fa..840b428 100644
--- a/src/rebar_state.erl
+++ b/src/rebar_state.erl
@@ -28,7 +28,7 @@
src_deps = [],
src_apps = [],
- pkg_deps = [] :: [rebar_packages:constraint()],
+ pkg_deps = [] :: [rebar_packages:package()],
project_apps = [],
providers = []}).
@@ -103,7 +103,7 @@ deps_names(State) ->
ec_cnv:to_binary(Dep)
end, Deps).
--spec pkg_deps(t()) -> [rebar_packages:constraint()].
+-spec pkg_deps(t()) -> [rebar_packages:package()].
pkg_deps(#state_t{pkg_deps=PkgDeps}) ->
PkgDeps.