moonfire-nvr/src
Scott Lamb 678500bc88 stop using a couple unstable features
It would be nice to build on stable Rust. In particular, I'm hitting
compiler bugs in Rust nightly, such at this one:
https://github.com/rust-lang/rust/issues/38177
I imagine beta/stable compilers would be less problematic.

These two features were easy to get rid of:

* alloc was used to get a Box<[u8]> to uninitialized memory.
  Looks like that's possible with Vec.

* box_syntax wasn't actually used at all. (Maybe a leftover from something.)

The remaining features are:

* plugin, for clippy.
  https://github.com/rust-lang/rust/issues/29597
  I could easily gate it with a "nightly" cargo feature.

* proc_macro, for serde_derive.
  https://github.com/rust-lang/rust/issues/35900
  serde does support stable rust, although it's annoying.
  https://serde.rs/codegen-stable.html
  I might just wait a bit; this feature looks like it's getting close to
  stabilization.
2016-12-07 21:05:49 -08:00
..
testdata Benchmark & speed up SampleIndexIterator 2016-05-19 22:53:23 -07:00
clock.rs add a basic test of Streamer, fix it 2016-12-06 18:41:44 -08:00
db.rs Make tests not care about the machine's timezone 2016-11-30 11:17:46 -08:00
dir.rs add a basic test of Streamer, fix it 2016-12-06 18:41:44 -08:00
error.rs Rust rewrite 2016-11-25 14:34:00 -08:00
h264.rs Rust rewrite 2016-11-25 14:34:00 -08:00
main.rs stop using a couple unstable features 2016-12-07 21:05:49 -08:00
mmapfile.rs Rust rewrite 2016-11-25 14:34:00 -08:00
mp4.rs stop using a couple unstable features 2016-12-07 21:05:49 -08:00
pieces.rs test and fix .mp4 generation code 2016-12-02 20:40:55 -08:00
recording.rs add a basic test of Streamer, fix it 2016-12-06 18:41:44 -08:00
resource.rs test and fix If-Match handling 2016-12-06 19:17:46 -08:00
schema.sql Rust rewrite 2016-11-25 14:34:00 -08:00
stream.rs add a basic test of Streamer, fix it 2016-12-06 18:41:44 -08:00
streamer.rs add a basic test of Streamer, fix it 2016-12-06 18:41:44 -08:00
testutil.rs test and fix .mp4 generation code 2016-12-02 20:40:55 -08:00
web.rs style: convert try!(...) to ...? in web.rs 2016-12-02 21:46:31 -08:00