Use pnet_datalink instead of all of pnet

pnet_transport takes a long time to build. It's been especially
painful from within a docker container for reasons I don't care
to understand. pnet_datalink is the only part of pnet we're using
so booting the rest.
This commit is contained in:
Greg Fitzgerald
2018-06-24 10:09:39 -06:00
committed by Greg Fitzgerald
parent 7059ea42d6
commit c7ce454188
4 changed files with 3 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ extern crate ring;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate pnet;
extern crate pnet_datalink;
extern crate serde_json;
extern crate sha2;
extern crate untrusted;