4 changed files with 208 additions and 2 deletions
@ -1,4 +1,196 @@ |
|||||
|
[[package]] |
||||
|
name = "aho-corasick" |
||||
|
version = "0.6.4" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "backtrace" |
||||
|
version = "0.3.7" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"libc 0.2.40 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"rustc-demangle 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "backtrace-sys" |
||||
|
version = "0.1.16" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"cc 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"libc 0.2.40 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "byteorder" |
||||
|
version = "1.2.3" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "cc" |
||||
|
version = "1.0.15" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "cfg-if" |
||||
|
version = "0.1.3" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "error-chain" |
||||
|
version = "0.11.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"backtrace 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "lazy_static" |
||||
|
version = "1.0.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "libc" |
||||
|
version = "0.2.40" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "memchr" |
||||
|
version = "2.0.1" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"libc 0.2.40 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "pcap" |
||||
|
version = "0.7.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"libc 0.2.40 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "pcap-file" |
||||
|
version = "0.10.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "regex" |
||||
|
version = "1.0.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"regex-syntax 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "regex-syntax" |
||||
|
version = "0.6.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "rustc-demangle" |
||||
|
version = "0.1.8" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
[[package]] |
[[package]] |
||||
name = "tcpsnif" |
name = "tcpsnif" |
||||
version = "0.1.0" |
version = "0.1.0" |
||||
|
dependencies = [ |
||||
|
"pcap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"pcap-file 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"regex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "thread_local" |
||||
|
version = "0.3.5" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "ucd-util" |
||||
|
version = "0.1.1" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "unreachable" |
||||
|
version = "1.0.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "utf8-ranges" |
||||
|
version = "1.0.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "void" |
||||
|
version = "1.0.2" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "winapi" |
||||
|
version = "0.3.4" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
dependencies = [ |
||||
|
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
|
] |
||||
|
|
||||
|
[[package]] |
||||
|
name = "winapi-i686-pc-windows-gnu" |
||||
|
version = "0.4.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[[package]] |
||||
|
name = "winapi-x86_64-pc-windows-gnu" |
||||
|
version = "0.4.0" |
||||
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
|
||||
|
[metadata] |
||||
|
"checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4" |
||||
|
"checksum backtrace 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea58cd16fd6c9d120b5bcb01d63883ae4cc7ba2aed35c1841b862a3c7ef6639" |
||||
|
"checksum backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "44585761d6161b0f57afc49482ab6bd067e4edef48c12a152c237eb0203f7661" |
||||
|
"checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9" |
||||
|
"checksum cc 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)" = "0ebb87d1116151416c0cf66a0e3fb6430cccd120fd6300794b4dfaa050ac40ba" |
||||
|
"checksum cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "405216fd8fe65f718daa7102ea808a946b6ce40c742998fbfd3463645552de18" |
||||
|
"checksum error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3" |
||||
|
"checksum lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c8f31047daa365f19be14b47c29df4f7c3b581832407daabe6ae77397619237d" |
||||
|
"checksum libc 0.2.40 (registry+https://github.com/rust-lang/crates.io-index)" = "6fd41f331ac7c5b8ac259b8bf82c75c0fb2e469bbf37d2becbba9a6a2221965b" |
||||
|
"checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" |
||||
|
"checksum pcap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f912b9e56d1d4851a5175c118fc6503c9f69a8fe1a0649a51aff20b92c757491" |
||||
|
"checksum pcap-file 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad5b729899fae3ba1ac9de3bd360829a3845a815b1396047ea1dc5e18a70fd47" |
||||
|
"checksum regex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75ecf88252dce580404a22444fc7d626c01815debba56a7f4f536772a5ff19d3" |
||||
|
"checksum regex-syntax 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8f1ac0f60d675cc6cf13a20ec076568254472551051ad5dd050364d70671bf6b" |
||||
|
"checksum rustc-demangle 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "76d7ba1feafada44f2d38eed812bd2489a03c0f5abb975799251518b68848649" |
||||
|
"checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" |
||||
|
"checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" |
||||
|
"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" |
||||
|
"checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" |
||||
|
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" |
||||
|
"checksum winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "04e3bd221fcbe8a271359c04f21a76db7d0c6028862d1bb5512d85e1e2eb5bb3" |
||||
|
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
||||
|
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
||||
|
|||||
Loading…
Reference in new issue