put bincode back to the version used for testing
This commit is contained in:
parent
a09f9ba2a8
commit
ffcd0f9c19
|
@ -44,7 +44,7 @@ js-sys = { version = "0.3", optional = true } # contains FFI bindings for the JS
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = { version = "1", default-features = false }
|
serde_json = { version = "1", default-features = false }
|
||||||
serde_derive = { version = "1", default-features = false }
|
serde_derive = { version = "1", default-features = false }
|
||||||
bincode = { version = "1.1.0" }
|
bincode = { version = "0.8.0" }
|
||||||
num-iter = { version = "0.1.35", default-features = false }
|
num-iter = { version = "0.1.35", default-features = false }
|
||||||
doc-comment = "0.3"
|
doc-comment = "0.3"
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ main() {
|
||||||
build_only
|
build_only
|
||||||
else
|
else
|
||||||
banner "Building/testing $CHANNEL"
|
banner "Building/testing $CHANNEL"
|
||||||
#build_and_test
|
build_and_test
|
||||||
banner "Testing Core $CHANNEL"
|
banner "Testing Core $CHANNEL"
|
||||||
build_core_test
|
build_core_test
|
||||||
fi
|
fi
|
||||||
|
@ -51,7 +51,7 @@ channel_run() {
|
||||||
if channel_matches ; then
|
if channel_matches ; then
|
||||||
pwd
|
pwd
|
||||||
local the_cmd="$ $*"
|
local the_cmd="$ $*"
|
||||||
echo "$the_cmd"
|
underline "$the_cmd"
|
||||||
"$@"
|
"$@"
|
||||||
else
|
else
|
||||||
pwd
|
pwd
|
||||||
|
@ -60,7 +60,6 @@ channel_run() {
|
||||||
if [[ $cmd == cargo || $cmd == rustc ]] ; then
|
if [[ $cmd == cargo || $cmd == rustc ]] ; then
|
||||||
underline "$ $cmd +${CHANNEL} $*"
|
underline "$ $cmd +${CHANNEL} $*"
|
||||||
"$cmd" "+${CHANNEL}" "$@"
|
"$cmd" "+${CHANNEL}" "$@"
|
||||||
|
|
||||||
else
|
else
|
||||||
underline "$ $cmd $*"
|
underline "$ $cmd $*"
|
||||||
"$cmd" "$@"
|
"$cmd" "$@"
|
||||||
|
|
Loading…
Reference in New Issue