aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 664e58f..a1d7d5f 100644
--- a/README.md
+++ b/README.md
@@ -4,3 +4,16 @@ methods defined on the standard library `Reader` and `Writer` traits.
Work in progress.
+
+TODO
+====
+1. `f32` and `f64` support. (trivial)
+2. Flesh out the README. (Install, examples, links to docs, limitations.)
+
+
+Ideas?
+======
+Use the `rustc-serialize` infrastructure, but it is known to be Not Fast. So
+I'm skeptical of how useful it would be. Basically, it would let you say
+something like: `let n: u32 = rdr.decode::<BigEndian>()` as opposed to
+`let n = rdr.read_u32::<BigEndian>()`. Doesn't seem like an obvious win.