1
Fork 0

Tidy up a few completed TODO's.

This commit is contained in:
Alex Helfet 2017-12-28 04:10:04 +00:00
parent 6a36fe5fd5
commit cf9b032288
2 changed files with 1 additions and 5 deletions

View file

@ -18,7 +18,6 @@ TMP_DIR="${REPO_DIR}/target/decode_typed/tmp"
mkdir -p "${TMP_DIR}"; mkdir -p "${TMP_DIR}";
rm -f "${TMP_DIR}/"*; rm -f "${TMP_DIR}/"*;
# TODO: Move dynamic.rs to TMP_DIR, both here and in the include! in main.rs.
export FRAMED_DECODE_DYNAMIC_RS="${TMP_DIR}/dynamic_${DECODE_TYPE_NAME}.rs"; export FRAMED_DECODE_DYNAMIC_RS="${TMP_DIR}/dynamic_${DECODE_TYPE_NAME}.rs";
cat > "${FRAMED_DECODE_DYNAMIC_RS}" <<EOF cat > "${FRAMED_DECODE_DYNAMIC_RS}" <<EOF
// Generated by framed-rs/bin/decode_typed, your changes will be overwritten. // Generated by framed-rs/bin/decode_typed, your changes will be overwritten.

View file

@ -24,10 +24,7 @@ framed = { path = "../framed" }
serde_json = "^1.0.0" serde_json = "^1.0.0"
[features] [features]
default = ["typed"] default = []
# Enable to print all data to stdout for testing. # Enable to print all data to stdout for testing.
trace = ["framed/trace"] trace = ["framed/trace"]
# TODO.
typed = ["framed/typed"]