added .gitignore and chaged folders organization

This commit is contained in:
Giuliano Bellini s294739
2022-08-17 09:39:48 +02:00
parent 695cc03017
commit b123899c62
1394 changed files with 25 additions and 6943 deletions

BIN
.DS_Store vendored
View File

Binary file not shown.

18
.gitignore vendored Normal file
View File

@@ -0,0 +1,18 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
.DS_store
*.txt

View File

View File

@@ -2,7 +2,7 @@
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/packet_sniffer.iml" filepath="$PROJECT_DIR$/.idea/packet_sniffer.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/pdsproject.iml" filepath="$PROJECT_DIR$/.idea/pdsproject.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

View File

Binary file not shown.

View File

@@ -1,10 +0,0 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="DuplicatedCode" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<Languages>
<language minSize="76" name="Rust" />
</Languages>
</inspection_tool>
</profile>
</component>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

View File

@@ -1,634 +0,0 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bumpalo"
version = "3.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
[[package]]
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0"
dependencies = [
"js-sys",
"num-integer",
"num-traits",
"time",
"wasm-bindgen",
"winapi 0.3.9",
]
[[package]]
name = "clap"
version = "3.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
"indexmap",
"once_cell",
"strsim",
"termcolor",
"textwrap",
]
[[package]]
name = "clap_derive"
version = "3.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "colored"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
dependencies = [
"atty",
"lazy_static",
"winapi 0.3.9",
]
[[package]]
name = "crossterm"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759f2256ab248ad498bdd62038187450921b1b8d24c348d198f3425b0bd289cb"
dependencies = [
"crossterm_winapi",
"lazy_static",
"libc",
"mio",
"winapi 0.3.9",
]
[[package]]
name = "crossterm_winapi"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02de3a35bcabb5bb6dc7d4449abb546d23f123b06f074e2cf1c50db516da6ac8"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "etherparse"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcb08c4aab4e2985045305551e67126b43f1b6b136bc4e1cd87fb0327877a611"
dependencies = [
"arrayvec",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "indexmap"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
version = "0.3.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.127"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b"
[[package]]
name = "libloading"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
dependencies = [
"cfg-if 1.0.0",
"winapi 0.3.9",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mio"
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
dependencies = [
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
]
[[package]]
name = "miow"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
[[package]]
name = "net2"
version = "0.2.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
dependencies = [
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "once_cell"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
[[package]]
name = "os_str_bytes"
version = "6.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4"
[[package]]
name = "packet_sniffer"
version = "0.1.0"
dependencies = [
"chrono",
"clap",
"colored",
"crossterm",
"etherparse",
"pcap",
]
[[package]]
name = "pcap"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42d1868a121e5f1d78134be7148b778d5352f28b7be30e7f993c3439671f0190"
dependencies = [
"errno",
"libc",
"libloading",
"regex",
"widestring",
"winapi 0.3.9",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
version = "1.0.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
dependencies = [
"proc-macro2",
]
[[package]]
name = "regex"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
version = "1.0.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
[[package]]
name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
dependencies = [
"libc",
"wasi",
"winapi 0.3.9",
]
[[package]]
name = "unicode-ident"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasm-bindgen"
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
[[package]]
name = "widestring"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7157704c2e12e3d2189c507b7482c52820a16dfa4465ba91add92f266667cadb"
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]

View File

@@ -1,22 +0,0 @@
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
<><>
<><> Packets are sniffed from adapter 'en0'
<><>
<><> Report updates info
<><> Report start time: 17/08/2022 08:12:18
<><> Report last update: 17/08/2022 08:12:55
<><> Report update frequency: every 2 seconds
<><> Number of times report was updated: 5
<><>
<><> Filters
<><> Considering address:port pairs featured by any number of packets
<><> Considering both IPv4 and IPv6 packets
<><> Considering packets exchanged both with TCP and/or UDP
<><> Considering all port numbers (from 0 to 65535)
<><>
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>

View File

Binary file not shown.

View File

@@ -1 +0,0 @@
{"rustc_fingerprint":2971462514782156308,"outputs":{"5309432699494263626":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n","stderr":""},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/giulianobellini/.rustup/toolchains/stable-x86_64-apple-darwin\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.59.0 (9d1b2106e 2022-02-23)\nbinary: rustc\ncommit-hash: 9d1b2106e23b1abd32fce1f17267604a5102f57a\ncommit-date: 2022-02-23\nhost: x86_64-apple-darwin\nrelease: 1.59.0\nLLVM version: 13.0.0\n","stderr":""},"2797684049618456168":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n","stderr":""}},"successes":{}}

View File

@@ -1 +0,0 @@
{"rustc_vv":"rustc 1.59.0 (9d1b2106e 2022-02-23)\nbinary: rustc\ncommit-hash: 9d1b2106e23b1abd32fce1f17267604a5102f57a\ncommit-date: 2022-02-23\nhost: x86_64-apple-darwin\nrelease: 1.59.0\nLLVM version: 13.0.0\n"}

View File

@@ -1,3 +0,0 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/

View File

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
0b02d4cd95ccae9d

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\", \"std\"]","target":14517922388190571959,"profile":8344124108420085910,"path":8333381984667099718,"deps":[[6893260508610722743,"memchr",false,7155899772465644256]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-0f0bc9d5c60441f5/dep-lib-aho_corasick"}}],"rustflags":[],"metadata":13904389431191498124,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
460cb9e98729923f

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\", \"std\"]","target":15141271784968785197,"profile":8344124108420085910,"path":10471161773330752651,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/arrayvec-28a76c6d8c77b6d3/dep-lib-arrayvec"}}],"rustflags":[],"metadata":5019420986621020735,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
bb57b97e2812838d

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\", \"std\"]","target":15141271784968785197,"profile":8987646332441898785,"path":10471161773330752651,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/arrayvec-4407a056ca21e08e/dep-lib-arrayvec"}}],"rustflags":[],"metadata":5019420986621020735,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
f687a18777ddbba8

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\", \"std\"]","target":15141271784968785197,"profile":13273598295226313782,"path":10471161773330752651,"deps":[],"local":[{"Precalculated":"0.7.2"}],"rustflags":[],"metadata":5019420986621020735,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
1a677df335e06b35

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":11003359739415230954,"profile":8344124108420085910,"path":15444366149929433959,"deps":[[5936327487784097636,"libc",false,8831393243179727845]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atty-1feec8b2b622eee4/dep-lib-atty"}}],"rustflags":[],"metadata":2329458237537140231,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":11003359739415230954,"profile":13273598295226313782,"path":15444366149929433959,"deps":[[5936327487784097636,"libc",false,4460992890143953241],[5936327487784097636,"libc",false,8534731836548219648]],"local":[{"Precalculated":"0.2.14"}],"rustflags":[],"metadata":2329458237537140231,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
bab5f2e5467fb09e

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":11003359739415230954,"profile":8987646332441898785,"path":15444366149929433959,"deps":[[5936327487784097636,"libc",false,4460992890143953241]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atty-fa2ebef209d88c80/dep-lib-atty"}}],"rustflags":[],"metadata":2329458237537140231,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
d742b2d7e15e1664

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":10236397793970852656,"profile":8344124108420085910,"path":8871138396590509377,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-1335997042446e5b/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
37749912508da7c6

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\"]","target":7112745982619283648,"profile":8987646332441898785,"path":2949529452505449313,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-0d92ac6ffc2d8ebf/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
91437b43708ae7d2

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\"]","target":7112745982619283648,"profile":8344124108420085910,"path":2949529452505449313,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-13d2a907925fc12c/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
e728c56431f0e482

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\"]","target":7112745982619283648,"profile":13273598295226313782,"path":2949529452505449313,"deps":[],"local":[{"Precalculated":"1.3.2"}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
3d69d15c68ae1471

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":10094334937643343087,"profile":8344124108420085910,"path":3135519241187830554,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-1d3a5197f6165fe9/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
17f6dce724daecca

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":10094334937643343087,"profile":8344124108420085910,"path":13995241465857918899,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-57b943692f42b17b/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
41c0993f99132a86

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":10094334937643343087,"profile":8987646332441898785,"path":3135519241187830554,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-61bc2db7193d860c/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
3bf3218b86cb9b8b

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[]","target":10094334937643343087,"profile":8987646332441898785,"path":13995241465857918899,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-bdedbc8156d6e450/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
0b3278b5a65ff0b2

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"clock\", \"default\", \"oldtime\", \"std\", \"time\", \"winapi\"]","target":3044988456830924338,"profile":8987646332441898785,"path":8598047435129236239,"deps":[[1494750142361447113,"num_integer",false,5255342203774161948],[8121635694596382552,"num_traits",false,16292567338798265052],[13938308772454855807,"time",false,10847438075834809557]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/chrono-61872c48bd4c85ff/dep-lib-chrono"}}],"rustflags":[],"metadata":9803565982372010724,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
ba14de4359f05381

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"clock\", \"default\", \"oldtime\", \"std\", \"time\", \"winapi\"]","target":3044988456830924338,"profile":8344124108420085910,"path":8598047435129236239,"deps":[[1494750142361447113,"num_integer",false,11848189827360916217],[8121635694596382552,"num_traits",false,4914208184264277573],[13938308772454855807,"time",false,16198734487856178705]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/chrono-c837ed7d41d95a2b/dep-lib-chrono"}}],"rustflags":[],"metadata":9803565982372010724,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"clock\", \"default\", \"oldtime\", \"std\", \"time\", \"winapi\"]","target":3044988456830924338,"profile":13273598295226313782,"path":8598047435129236239,"deps":[[1494750142361447113,"num_integer",false,5255342203774161948],[1494750142361447113,"num_integer",false,14736680188762092902],[8121635694596382552,"num_traits",false,16292567338798265052],[8121635694596382552,"num_traits",false,12104278603139367232],[13938308772454855807,"time",false,10847438075834809557],[13938308772454855807,"time",false,492231304482134925]],"local":[{"Precalculated":"0.4.20"}],"rustflags":[],"metadata":9803565982372010724,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
9616d630ce16ccf1

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"atty\", \"color\", \"default\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":9915717286748794773,"profile":8344124108420085910,"path":10190762159840165932,"deps":[[469271197183527856,"indexmap",false,4862609193895426511],[1881289145811321387,"termcolor",false,8903366309756703113],[3684715375434759994,"strsim",false,8902851093794724213],[10874883041324050949,"atty",false,3849416828841191194],[12703473373518060221,"textwrap",false,17155205250938520878],[14051957667571541382,"bitflags",false,15197267682358150033],[15095817962595534823,"clap_lex",false,8762307692892448326]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clap-57046093200aadfb/dep-lib-clap"}}],"rustflags":[],"metadata":13636260659328210681,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
d9abeae229854a25

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"atty\", \"clap_derive\", \"color\", \"default\", \"derive\", \"once_cell\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":9915717286748794773,"profile":8344124108420085910,"path":10190762159840165932,"deps":[[469271197183527856,"indexmap",false,4862609193895426511],[1881289145811321387,"termcolor",false,8903366309756703113],[3684715375434759994,"strsim",false,8902851093794724213],[6380400231435474709,"clap_derive",false,17731367881484802291],[10874883041324050949,"atty",false,3849416828841191194],[12703473373518060221,"textwrap",false,17155205250938520878],[13220248725062288935,"once_cell",false,2209228587548498855],[14051957667571541382,"bitflags",false,15197267682358150033],[15095817962595534823,"clap_lex",false,8762307692892448326]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clap-6006cabbd19c8508/dep-lib-clap"}}],"rustflags":[],"metadata":13636260659328210681,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
7ec5b2a8423c3107

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"atty\", \"clap_derive\", \"color\", \"default\", \"derive\", \"once_cell\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":9915717286748794773,"profile":8987646332441898785,"path":10190762159840165932,"deps":[[469271197183527856,"indexmap",false,18310086625199306670],[1881289145811321387,"termcolor",false,17815082547268083443],[3684715375434759994,"strsim",false,182805452414175857],[6380400231435474709,"clap_derive",false,17731367881484802291],[10874883041324050949,"atty",false,11434779396376016314],[12703473373518060221,"textwrap",false,5054453383163679621],[13220248725062288935,"once_cell",false,18350437996459363060],[14051957667571541382,"bitflags",false,14314565315669357623],[15095817962595534823,"clap_lex",false,9084136734623245327]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clap-9a20adffca58df7d/dep-lib-clap"}}],"rustflags":[],"metadata":13636260659328210681,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"atty\", \"clap_derive\", \"color\", \"default\", \"derive\", \"once_cell\", \"std\", \"strsim\", \"suggestions\", \"termcolor\"]","target":9915717286748794773,"profile":13273598295226313782,"path":10190762159840165932,"deps":[[469271197183527856,"indexmap",false,18310086625199306670],[469271197183527856,"indexmap",false,15074357985389802261],[1881289145811321387,"termcolor",false,17815082547268083443],[1881289145811321387,"termcolor",false,4165184145656961654],[3684715375434759994,"strsim",false,182805452414175857],[3684715375434759994,"strsim",false,2539579195292843406],[6380400231435474709,"clap_derive",false,17731367881484802291],[6380400231435474709,"clap_derive",false,5602884211443315938],[10874883041324050949,"atty",false,11434779396376016314],[10874883041324050949,"atty",false,13761061781950990055],[12703473373518060221,"textwrap",false,5054453383163679621],[12703473373518060221,"textwrap",false,1014718142420824823],[13220248725062288935,"once_cell",false,18350437996459363060],[13220248725062288935,"once_cell",false,1307053597604533656],[14051957667571541382,"bitflags",false,14314565315669357623],[14051957667571541382,"bitflags",false,9431927614555367655],[15095817962595534823,"clap_lex",false,9084136734623245327],[15095817962595534823,"clap_lex",false,7856933660845285407]],"local":[{"Precalculated":"3.2.16"}],"rustflags":[],"metadata":13636260659328210681,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
{"rustc":1057704222874089767,"features":"[\"default\"]","target":16007396582338362728,"profile":13273598295226313782,"path":220822320727396255,"deps":[[2303534799027988957,"proc_macro2",false,9911721887179199594],[2303534799027988957,"proc_macro2",false,18324606997280622842],[2473955859471087235,"heck",false,6995415947538348630],[2473955859471087235,"heck",false,3207831938404451444],[4114176108478934945,"syn",false,16638599054079238339],[4114176108478934945,"syn",false,11819964153767820173],[4658667968557883043,"quote",false,2091002608901430853],[4658667968557883043,"quote",false,2277977029781031533],[6815040490083096921,"proc_macro_error",false,4006938711578519961],[6815040490083096921,"proc_macro_error",false,11918596552925994294]],"local":[{"Precalculated":"3.2.15"}],"rustflags":[],"metadata":751742508315986310,"config":2202906307356721367,"compile_kind":0}

View File

@@ -1 +0,0 @@
This file has an mtime of when this was started.

View File

@@ -1 +0,0 @@
f318acb5247912f6

Some files were not shown because too many files have changed in this diff Show More