diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..44d2d9b --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,21 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "client" +version = "0.1.0" +dependencies = [ + "common", +] + +[[package]] +name = "common" +version = "0.1.0" + +[[package]] +name = "server" +version = "0.1.0" +dependencies = [ + "common", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6256231 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[workspace] +members = [ + "client", + "server", + "common" +] + diff --git a/client/Cargo.toml b/client/Cargo.toml new file mode 100644 index 0000000..bb5d5a3 --- /dev/null +++ b/client/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "client" +version = "0.1.0" +edition = "2021" + +[dependencies] +common = { path = "../common" } + diff --git a/client/src/main.rs b/client/src/main.rs new file mode 100644 index 0000000..cb512be --- /dev/null +++ b/client/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/common/Cargo.toml b/common/Cargo.toml new file mode 100644 index 0000000..c6964ef --- /dev/null +++ b/common/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "common" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/common/src/lib.rs b/common/src/lib.rs new file mode 100644 index 0000000..5bdca67 --- /dev/null +++ b/common/src/lib.rs @@ -0,0 +1,14 @@ +pub fn add(left: u64, right: u64) -> u64 { + left + right +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn it_works() { + let result = add(2, 2); + assert_eq!(result, 4); + } +} diff --git a/server/Cargo.toml b/server/Cargo.toml new file mode 100644 index 0000000..5cde1bc --- /dev/null +++ b/server/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "server" +version = "0.1.0" +edition = "2021" + + +[dependencies] +common = { path = "../common" } + diff --git a/server/src/main.rs b/server/src/main.rs new file mode 100644 index 0000000..cb512be --- /dev/null +++ b/server/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/target/.rustc_info.json b/target/.rustc_info.json new file mode 100644 index 0000000..b43c54c --- /dev/null +++ b/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":6756221632952318671,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.83.0 (90b35a623 2024-11-26)\nbinary: rustc\ncommit-hash: 90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf\ncommit-date: 2024-11-26\nhost: x86_64-unknown-linux-gnu\nrelease: 1.83.0\nLLVM version: 19.1.1\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/kbot/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/target/CACHEDIR.TAG b/target/CACHEDIR.TAG new file mode 100644 index 0000000..9bcbb96 --- /dev/null +++ b/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/target/debug/.cargo-lock b/target/debug/.cargo-lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client b/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client new file mode 100644 index 0000000..ec393de --- /dev/null +++ b/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client @@ -0,0 +1 @@ +df46325d14551001 \ No newline at end of file diff --git a/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client.json b/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client.json new file mode 100644 index 0000000..fa3a077 --- /dev/null +++ b/target/debug/.fingerprint/client-179b7bd3309b0ab0/bin-client.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":1444767327470238010,"profile":11597332650809196192,"path":7472433242183518160,"deps":[[6207214873101797754,"common",false,1490005191282650046]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/client-179b7bd3309b0ab0/dep-bin-client","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/client-179b7bd3309b0ab0/dep-bin-client b/target/debug/.fingerprint/client-179b7bd3309b0ab0/dep-bin-client new file mode 100644 index 0000000..d45fdc9 Binary files /dev/null and b/target/debug/.fingerprint/client-179b7bd3309b0ab0/dep-bin-client differ diff --git a/target/debug/.fingerprint/client-179b7bd3309b0ab0/invoked.timestamp b/target/debug/.fingerprint/client-179b7bd3309b0ab0/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/client-179b7bd3309b0ab0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client b/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client new file mode 100644 index 0000000..48a1ec2 --- /dev/null +++ b/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client @@ -0,0 +1 @@ +a745a86bb228f131 \ No newline at end of file diff --git a/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client.json b/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client.json new file mode 100644 index 0000000..09797ba --- /dev/null +++ b/target/debug/.fingerprint/client-3b1900e82035fbac/bin-client.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":1444767327470238010,"profile":5601947868832436996,"path":7472433242183518160,"deps":[[6207214873101797754,"common",false,17472345130052453572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/client-3b1900e82035fbac/dep-bin-client","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/client-3b1900e82035fbac/invoked.timestamp b/target/debug/.fingerprint/client-3b1900e82035fbac/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/client-3b1900e82035fbac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client b/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client new file mode 100644 index 0000000..360d492 --- /dev/null +++ b/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client @@ -0,0 +1 @@ +0b137c834c6cb374 \ No newline at end of file diff --git a/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client.json b/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client.json new file mode 100644 index 0000000..606f57f --- /dev/null +++ b/target/debug/.fingerprint/client-8d208727a1af9b9b/bin-client.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":1444767327470238010,"profile":5601947868832436996,"path":7472433242183518160,"deps":[[6207214873101797754,"common",false,10849078397364016977]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/client-8d208727a1af9b9b/dep-bin-client","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/client-8d208727a1af9b9b/dep-bin-client b/target/debug/.fingerprint/client-8d208727a1af9b9b/dep-bin-client new file mode 100644 index 0000000..57fe479 Binary files /dev/null and b/target/debug/.fingerprint/client-8d208727a1af9b9b/dep-bin-client differ diff --git a/target/debug/.fingerprint/client-8d208727a1af9b9b/invoked.timestamp b/target/debug/.fingerprint/client-8d208727a1af9b9b/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/client-8d208727a1af9b9b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/client-9043aaf4df6d91cb/dep-test-bin-client b/target/debug/.fingerprint/client-9043aaf4df6d91cb/dep-test-bin-client new file mode 100644 index 0000000..57fe479 Binary files /dev/null and b/target/debug/.fingerprint/client-9043aaf4df6d91cb/dep-test-bin-client differ diff --git a/target/debug/.fingerprint/client-9043aaf4df6d91cb/invoked.timestamp b/target/debug/.fingerprint/client-9043aaf4df6d91cb/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/client-9043aaf4df6d91cb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client b/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client new file mode 100644 index 0000000..47b87c0 --- /dev/null +++ b/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client @@ -0,0 +1 @@ +0caf57ff7888a369 \ No newline at end of file diff --git a/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client.json b/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client.json new file mode 100644 index 0000000..5333973 --- /dev/null +++ b/target/debug/.fingerprint/client-9043aaf4df6d91cb/test-bin-client.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":1444767327470238010,"profile":11983525691607113661,"path":7472433242183518160,"deps":[[6207214873101797754,"common",false,10849078397364016977]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/client-9043aaf4df6d91cb/dep-test-bin-client","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/client-de94b765d7afd154/invoked.timestamp b/target/debug/.fingerprint/client-de94b765d7afd154/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/client-de94b765d7afd154/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client b/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client new file mode 100644 index 0000000..a72e399 --- /dev/null +++ b/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client @@ -0,0 +1 @@ +2530c37eefd023ff \ No newline at end of file diff --git a/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client.json b/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client.json new file mode 100644 index 0000000..64573af --- /dev/null +++ b/target/debug/.fingerprint/client-de94b765d7afd154/test-bin-client.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":1444767327470238010,"profile":11983525691607113661,"path":7472433242183518160,"deps":[[6207214873101797754,"common",false,17472345130052453572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/client-de94b765d7afd154/dep-test-bin-client","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/common-31356e26b100f5bd/dep-lib-common b/target/debug/.fingerprint/common-31356e26b100f5bd/dep-lib-common new file mode 100644 index 0000000..6f5fb3e Binary files /dev/null and b/target/debug/.fingerprint/common-31356e26b100f5bd/dep-lib-common differ diff --git a/target/debug/.fingerprint/common-31356e26b100f5bd/invoked.timestamp b/target/debug/.fingerprint/common-31356e26b100f5bd/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/common-31356e26b100f5bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common b/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common new file mode 100644 index 0000000..57a66a6 --- /dev/null +++ b/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common @@ -0,0 +1 @@ +51173f4f52ab8f96 \ No newline at end of file diff --git a/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common.json b/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common.json new file mode 100644 index 0000000..3f5c0af --- /dev/null +++ b/target/debug/.fingerprint/common-31356e26b100f5bd/lib-common.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":10166723234630589324,"profile":5601947868832436996,"path":2215484435405938935,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/common-31356e26b100f5bd/dep-lib-common","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/common-5d519110bbe5efae/invoked.timestamp b/target/debug/.fingerprint/common-5d519110bbe5efae/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/common-5d519110bbe5efae/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common b/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common new file mode 100644 index 0000000..12f0231 --- /dev/null +++ b/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common @@ -0,0 +1 @@ +fb5354359f4b6c55 \ No newline at end of file diff --git a/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common.json b/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common.json new file mode 100644 index 0000000..de5aa89 --- /dev/null +++ b/target/debug/.fingerprint/common-5d519110bbe5efae/test-lib-common.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":10166723234630589324,"profile":11983525691607113661,"path":2215484435405938935,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/common-5d519110bbe5efae/dep-test-lib-common","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/common-6cc2bb0a555a2faf/dep-test-lib-common b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/dep-test-lib-common new file mode 100644 index 0000000..6f5fb3e Binary files /dev/null and b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/dep-test-lib-common differ diff --git a/target/debug/.fingerprint/common-6cc2bb0a555a2faf/invoked.timestamp b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common new file mode 100644 index 0000000..234e27f --- /dev/null +++ b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common @@ -0,0 +1 @@ +7be46ee0bba2159a \ No newline at end of file diff --git a/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common.json b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common.json new file mode 100644 index 0000000..cedc9bb --- /dev/null +++ b/target/debug/.fingerprint/common-6cc2bb0a555a2faf/test-lib-common.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":10166723234630589324,"profile":11983525691607113661,"path":2215484435405938935,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/common-6cc2bb0a555a2faf/dep-test-lib-common","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/common-c2e202d8465628b7/invoked.timestamp b/target/debug/.fingerprint/common-c2e202d8465628b7/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/common-c2e202d8465628b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common b/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common new file mode 100644 index 0000000..6b25140 --- /dev/null +++ b/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common @@ -0,0 +1 @@ +c484cdc5523d7af2 \ No newline at end of file diff --git a/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common.json b/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common.json new file mode 100644 index 0000000..c7e3341 --- /dev/null +++ b/target/debug/.fingerprint/common-c2e202d8465628b7/lib-common.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":10166723234630589324,"profile":5601947868832436996,"path":2215484435405938935,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/common-c2e202d8465628b7/dep-lib-common","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/common-efacdc852ee692a5/dep-lib-common b/target/debug/.fingerprint/common-efacdc852ee692a5/dep-lib-common new file mode 100644 index 0000000..5ba18bf Binary files /dev/null and b/target/debug/.fingerprint/common-efacdc852ee692a5/dep-lib-common differ diff --git a/target/debug/.fingerprint/common-efacdc852ee692a5/invoked.timestamp b/target/debug/.fingerprint/common-efacdc852ee692a5/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/common-efacdc852ee692a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common b/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common new file mode 100644 index 0000000..11d61ad --- /dev/null +++ b/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common @@ -0,0 +1 @@ +beebe3bbd38fad14 \ No newline at end of file diff --git a/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common.json b/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common.json new file mode 100644 index 0000000..1061eb6 --- /dev/null +++ b/target/debug/.fingerprint/common-efacdc852ee692a5/lib-common.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":10166723234630589324,"profile":11597332650809196192,"path":2215484435405938935,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/common-efacdc852ee692a5/dep-lib-common","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-337b6250a7a7b268/dep-test-bin-server b/target/debug/.fingerprint/server-337b6250a7a7b268/dep-test-bin-server new file mode 100644 index 0000000..c7fa2a8 Binary files /dev/null and b/target/debug/.fingerprint/server-337b6250a7a7b268/dep-test-bin-server differ diff --git a/target/debug/.fingerprint/server-337b6250a7a7b268/invoked.timestamp b/target/debug/.fingerprint/server-337b6250a7a7b268/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/server-337b6250a7a7b268/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server b/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server new file mode 100644 index 0000000..99d5f8b --- /dev/null +++ b/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server @@ -0,0 +1 @@ +fe42c4b02dc543a6 \ No newline at end of file diff --git a/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server.json b/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server.json new file mode 100644 index 0000000..1fcb107 --- /dev/null +++ b/target/debug/.fingerprint/server-337b6250a7a7b268/test-bin-server.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":7530358924053210007,"profile":11983525691607113661,"path":9042520751364729225,"deps":[[6207214873101797754,"common",false,10849078397364016977]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server-337b6250a7a7b268/dep-test-bin-server","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-35833d773ae596d2/bin-server b/target/debug/.fingerprint/server-35833d773ae596d2/bin-server new file mode 100644 index 0000000..4d55424 --- /dev/null +++ b/target/debug/.fingerprint/server-35833d773ae596d2/bin-server @@ -0,0 +1 @@ +8971c1c9d382dcd3 \ No newline at end of file diff --git a/target/debug/.fingerprint/server-35833d773ae596d2/bin-server.json b/target/debug/.fingerprint/server-35833d773ae596d2/bin-server.json new file mode 100644 index 0000000..23fd4c9 --- /dev/null +++ b/target/debug/.fingerprint/server-35833d773ae596d2/bin-server.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":7530358924053210007,"profile":5601947868832436996,"path":9042520751364729225,"deps":[[6207214873101797754,"common",false,17472345130052453572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server-35833d773ae596d2/dep-bin-server","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-35833d773ae596d2/invoked.timestamp b/target/debug/.fingerprint/server-35833d773ae596d2/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/server-35833d773ae596d2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server b/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server new file mode 100644 index 0000000..d7996cc --- /dev/null +++ b/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server @@ -0,0 +1 @@ +0ff34f96eb75ad6c \ No newline at end of file diff --git a/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server.json b/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server.json new file mode 100644 index 0000000..95b2d1d --- /dev/null +++ b/target/debug/.fingerprint/server-66d0d63ec1efb34f/bin-server.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":7530358924053210007,"profile":5601947868832436996,"path":9042520751364729225,"deps":[[6207214873101797754,"common",false,10849078397364016977]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server-66d0d63ec1efb34f/dep-bin-server","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-66d0d63ec1efb34f/dep-bin-server b/target/debug/.fingerprint/server-66d0d63ec1efb34f/dep-bin-server new file mode 100644 index 0000000..c7fa2a8 Binary files /dev/null and b/target/debug/.fingerprint/server-66d0d63ec1efb34f/dep-bin-server differ diff --git a/target/debug/.fingerprint/server-66d0d63ec1efb34f/invoked.timestamp b/target/debug/.fingerprint/server-66d0d63ec1efb34f/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/server-66d0d63ec1efb34f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/server-aee9b2dc905143d7/invoked.timestamp b/target/debug/.fingerprint/server-aee9b2dc905143d7/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/server-aee9b2dc905143d7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server b/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server new file mode 100644 index 0000000..904b41c --- /dev/null +++ b/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server @@ -0,0 +1 @@ +e891caef1cbb007d \ No newline at end of file diff --git a/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server.json b/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server.json new file mode 100644 index 0000000..b66b88f --- /dev/null +++ b/target/debug/.fingerprint/server-aee9b2dc905143d7/test-bin-server.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":7530358924053210007,"profile":11983525691607113661,"path":9042520751364729225,"deps":[[6207214873101797754,"common",false,17472345130052453572]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server-aee9b2dc905143d7/dep-test-bin-server","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-f035d452317b9758/bin-server b/target/debug/.fingerprint/server-f035d452317b9758/bin-server new file mode 100644 index 0000000..c4a1883 --- /dev/null +++ b/target/debug/.fingerprint/server-f035d452317b9758/bin-server @@ -0,0 +1 @@ +9213e777c217345c \ No newline at end of file diff --git a/target/debug/.fingerprint/server-f035d452317b9758/bin-server.json b/target/debug/.fingerprint/server-f035d452317b9758/bin-server.json new file mode 100644 index 0000000..e049013 --- /dev/null +++ b/target/debug/.fingerprint/server-f035d452317b9758/bin-server.json @@ -0,0 +1 @@ +{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":7530358924053210007,"profile":11597332650809196192,"path":9042520751364729225,"deps":[[6207214873101797754,"common",false,1490005191282650046]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server-f035d452317b9758/dep-bin-server","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/server-f035d452317b9758/dep-bin-server b/target/debug/.fingerprint/server-f035d452317b9758/dep-bin-server new file mode 100644 index 0000000..d45fdc9 Binary files /dev/null and b/target/debug/.fingerprint/server-f035d452317b9758/dep-bin-server differ diff --git a/target/debug/.fingerprint/server-f035d452317b9758/invoked.timestamp b/target/debug/.fingerprint/server-f035d452317b9758/invoked.timestamp new file mode 100644 index 0000000..ae101bd --- /dev/null +++ b/target/debug/.fingerprint/server-f035d452317b9758/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/client b/target/debug/client new file mode 100755 index 0000000..7e499f4 Binary files /dev/null and b/target/debug/client differ diff --git a/target/debug/client.d b/target/debug/client.d new file mode 100644 index 0000000..ca87f1b --- /dev/null +++ b/target/debug/client.d @@ -0,0 +1 @@ +/home/kbot/vault/target/debug/client: /home/kbot/vault/client/src/main.rs /home/kbot/vault/common/src/lib.rs diff --git a/target/debug/deps/client-179b7bd3309b0ab0 b/target/debug/deps/client-179b7bd3309b0ab0 new file mode 100755 index 0000000..7e499f4 Binary files /dev/null and b/target/debug/deps/client-179b7bd3309b0ab0 differ diff --git a/target/debug/deps/client-179b7bd3309b0ab0.d b/target/debug/deps/client-179b7bd3309b0ab0.d new file mode 100644 index 0000000..dd5edbe --- /dev/null +++ b/target/debug/deps/client-179b7bd3309b0ab0.d @@ -0,0 +1,5 @@ +/home/kbot/vault/target/debug/deps/client-179b7bd3309b0ab0: client/src/main.rs + +/home/kbot/vault/target/debug/deps/client-179b7bd3309b0ab0.d: client/src/main.rs + +client/src/main.rs: diff --git a/target/debug/deps/client-8d208727a1af9b9b.d b/target/debug/deps/client-8d208727a1af9b9b.d new file mode 100644 index 0000000..3b64b51 --- /dev/null +++ b/target/debug/deps/client-8d208727a1af9b9b.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libclient-8d208727a1af9b9b.rmeta: client/src/main.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/client-8d208727a1af9b9b.d: client/src/main.rs Cargo.toml + +client/src/main.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/client-9043aaf4df6d91cb.d b/target/debug/deps/client-9043aaf4df6d91cb.d new file mode 100644 index 0000000..2d11e48 --- /dev/null +++ b/target/debug/deps/client-9043aaf4df6d91cb.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libclient-9043aaf4df6d91cb.rmeta: client/src/main.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/client-9043aaf4df6d91cb.d: client/src/main.rs Cargo.toml + +client/src/main.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/common-31356e26b100f5bd.d b/target/debug/deps/common-31356e26b100f5bd.d new file mode 100644 index 0000000..251192b --- /dev/null +++ b/target/debug/deps/common-31356e26b100f5bd.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libcommon-31356e26b100f5bd.rmeta: common/src/lib.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/common-31356e26b100f5bd.d: common/src/lib.rs Cargo.toml + +common/src/lib.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/common-6cc2bb0a555a2faf.d b/target/debug/deps/common-6cc2bb0a555a2faf.d new file mode 100644 index 0000000..3c8023c --- /dev/null +++ b/target/debug/deps/common-6cc2bb0a555a2faf.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libcommon-6cc2bb0a555a2faf.rmeta: common/src/lib.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/common-6cc2bb0a555a2faf.d: common/src/lib.rs Cargo.toml + +common/src/lib.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/common-efacdc852ee692a5.d b/target/debug/deps/common-efacdc852ee692a5.d new file mode 100644 index 0000000..8fb2c76 --- /dev/null +++ b/target/debug/deps/common-efacdc852ee692a5.d @@ -0,0 +1,7 @@ +/home/kbot/vault/target/debug/deps/libcommon-efacdc852ee692a5.rmeta: common/src/lib.rs + +/home/kbot/vault/target/debug/deps/libcommon-efacdc852ee692a5.rlib: common/src/lib.rs + +/home/kbot/vault/target/debug/deps/common-efacdc852ee692a5.d: common/src/lib.rs + +common/src/lib.rs: diff --git a/target/debug/deps/libclient-8d208727a1af9b9b.rmeta b/target/debug/deps/libclient-8d208727a1af9b9b.rmeta new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/deps/libclient-9043aaf4df6d91cb.rmeta b/target/debug/deps/libclient-9043aaf4df6d91cb.rmeta new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/deps/libcommon-31356e26b100f5bd.rmeta b/target/debug/deps/libcommon-31356e26b100f5bd.rmeta new file mode 100644 index 0000000..9b5a17c Binary files /dev/null and b/target/debug/deps/libcommon-31356e26b100f5bd.rmeta differ diff --git a/target/debug/deps/libcommon-6cc2bb0a555a2faf.rmeta b/target/debug/deps/libcommon-6cc2bb0a555a2faf.rmeta new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/deps/libcommon-efacdc852ee692a5.rlib b/target/debug/deps/libcommon-efacdc852ee692a5.rlib new file mode 100644 index 0000000..a582c65 Binary files /dev/null and b/target/debug/deps/libcommon-efacdc852ee692a5.rlib differ diff --git a/target/debug/deps/libcommon-efacdc852ee692a5.rmeta b/target/debug/deps/libcommon-efacdc852ee692a5.rmeta new file mode 100644 index 0000000..d175664 Binary files /dev/null and b/target/debug/deps/libcommon-efacdc852ee692a5.rmeta differ diff --git a/target/debug/deps/libserver-337b6250a7a7b268.rmeta b/target/debug/deps/libserver-337b6250a7a7b268.rmeta new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/deps/libserver-66d0d63ec1efb34f.rmeta b/target/debug/deps/libserver-66d0d63ec1efb34f.rmeta new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/deps/server-337b6250a7a7b268.d b/target/debug/deps/server-337b6250a7a7b268.d new file mode 100644 index 0000000..6b7b783 --- /dev/null +++ b/target/debug/deps/server-337b6250a7a7b268.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libserver-337b6250a7a7b268.rmeta: server/src/main.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/server-337b6250a7a7b268.d: server/src/main.rs Cargo.toml + +server/src/main.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/server-66d0d63ec1efb34f.d b/target/debug/deps/server-66d0d63ec1efb34f.d new file mode 100644 index 0000000..be27a44 --- /dev/null +++ b/target/debug/deps/server-66d0d63ec1efb34f.d @@ -0,0 +1,9 @@ +/home/kbot/vault/target/debug/deps/libserver-66d0d63ec1efb34f.rmeta: server/src/main.rs Cargo.toml + +/home/kbot/vault/target/debug/deps/server-66d0d63ec1efb34f.d: server/src/main.rs Cargo.toml + +server/src/main.rs: +Cargo.toml: + +# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__ +# env-dep:CLIPPY_CONF_DIR diff --git a/target/debug/deps/server-f035d452317b9758 b/target/debug/deps/server-f035d452317b9758 new file mode 100755 index 0000000..f265dba Binary files /dev/null and b/target/debug/deps/server-f035d452317b9758 differ diff --git a/target/debug/deps/server-f035d452317b9758.d b/target/debug/deps/server-f035d452317b9758.d new file mode 100644 index 0000000..7f0728c --- /dev/null +++ b/target/debug/deps/server-f035d452317b9758.d @@ -0,0 +1,5 @@ +/home/kbot/vault/target/debug/deps/server-f035d452317b9758: server/src/main.rs + +/home/kbot/vault/target/debug/deps/server-f035d452317b9758.d: server/src/main.rs + +server/src/main.rs: diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/1t07oxw9dy0pqkgn52tp1qfvk.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/1t07oxw9dy0pqkgn52tp1qfvk.o new file mode 100644 index 0000000..d75e959 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/1t07oxw9dy0pqkgn52tp1qfvk.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2cvgvuvjariabvod6n8oeoyat.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2cvgvuvjariabvod6n8oeoyat.o new file mode 100644 index 0000000..8b76d72 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2cvgvuvjariabvod6n8oeoyat.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2kth6crdo8tdr99swahcjmlab.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2kth6crdo8tdr99swahcjmlab.o new file mode 100644 index 0000000..2837eb3 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/2kth6crdo8tdr99swahcjmlab.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/6thywxmyv6iu2gx0142rgppys.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/6thywxmyv6iu2gx0142rgppys.o new file mode 100644 index 0000000..696c649 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/6thywxmyv6iu2gx0142rgppys.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/bvuq7ort58ozlb268dmgw7kif.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/bvuq7ort58ozlb268dmgw7kif.o new file mode 100644 index 0000000..403d5f8 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/bvuq7ort58ozlb268dmgw7kif.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/cjk8hqr9s6w73g0xhgrq5zz6c.o b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/cjk8hqr9s6w73g0xhgrq5zz6c.o new file mode 100644 index 0000000..aca1288 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/cjk8hqr9s6w73g0xhgrq5zz6c.o differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/dep-graph.bin b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/dep-graph.bin new file mode 100644 index 0000000..b5fdd08 Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/dep-graph.bin differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/query-cache.bin b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/query-cache.bin new file mode 100644 index 0000000..c94357f Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/query-cache.bin differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/work-products.bin b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/work-products.bin new file mode 100644 index 0000000..697972a Binary files /dev/null and b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf-6mjrp3gys3h0mvjyrcfb970jx/work-products.bin differ diff --git a/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf.lock b/target/debug/incremental/client-2ax1frfem8l4h/s-h6l2zcdklu-16hkecf.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/dep-graph.bin b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/dep-graph.bin new file mode 100644 index 0000000..6444901 Binary files /dev/null and b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/dep-graph.bin differ diff --git a/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/query-cache.bin b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/query-cache.bin new file mode 100644 index 0000000..720c0d2 Binary files /dev/null and b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/query-cache.bin differ diff --git a/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/work-products.bin b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k-3t9dys22hwe1g8g9gcdr15251/work-products.bin differ diff --git a/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k.lock b/target/debug/incremental/client-2gamywwagty36/s-h6l304s08g-1wnw39k.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/dep-graph.bin b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/dep-graph.bin new file mode 100644 index 0000000..7243e39 Binary files /dev/null and b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/dep-graph.bin differ diff --git a/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/query-cache.bin b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/query-cache.bin new file mode 100644 index 0000000..a2ed2a0 Binary files /dev/null and b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/query-cache.bin differ diff --git a/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/work-products.bin b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun-5enpprq4a4ku1fukynxlrdwgo/work-products.bin differ diff --git a/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun.lock b/target/debug/incremental/client-2wiu7366saxta/s-h6l304s09b-1md3yun.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/dep-graph.bin b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/dep-graph.bin new file mode 100644 index 0000000..381eba4 Binary files /dev/null and b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/dep-graph.bin differ diff --git a/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/query-cache.bin b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/query-cache.bin new file mode 100644 index 0000000..d9a5d1b Binary files /dev/null and b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/query-cache.bin differ diff --git a/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/work-products.bin b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q-brwqjh34jdn7hcv3eagq4ti0p/work-products.bin differ diff --git a/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q.lock b/target/debug/incremental/common-0krgo8kpy6xcc/s-h6l304rmfe-0r0tc8q.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/532c8n8lusw97s5449i98lc4u.o b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/532c8n8lusw97s5449i98lc4u.o new file mode 100644 index 0000000..5f429b5 Binary files /dev/null and b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/532c8n8lusw97s5449i98lc4u.o differ diff --git a/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/dep-graph.bin b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/dep-graph.bin new file mode 100644 index 0000000..f1ea5b9 Binary files /dev/null and b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/dep-graph.bin differ diff --git a/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/query-cache.bin b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/query-cache.bin new file mode 100644 index 0000000..d3f4d3f Binary files /dev/null and b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/query-cache.bin differ diff --git a/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/work-products.bin b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/work-products.bin new file mode 100644 index 0000000..567ba3a Binary files /dev/null and b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8-26ky5x9q3cl7s2zfw097zr3v7/work-products.bin differ diff --git a/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8.lock b/target/debug/incremental/common-1s6qinjn9qpr6/s-h6l2zcca68-1tndlu8.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/dep-graph.bin b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/dep-graph.bin new file mode 100644 index 0000000..d3156cd Binary files /dev/null and b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/dep-graph.bin differ diff --git a/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/query-cache.bin b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/query-cache.bin new file mode 100644 index 0000000..59f7563 Binary files /dev/null and b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/query-cache.bin differ diff --git a/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/work-products.bin b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60-6zlcdvczyb0ihrcwkaem8233q/work-products.bin differ diff --git a/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60.lock b/target/debug/incremental/common-3c8t4166shu75/s-h6l304rmey-1mfeg60.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/0yu4k742oaylm3o3xhex6pn5y.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/0yu4k742oaylm3o3xhex6pn5y.o new file mode 100644 index 0000000..529b55b Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/0yu4k742oaylm3o3xhex6pn5y.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/2jrenumvhlsoz1zeynohlzp4c.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/2jrenumvhlsoz1zeynohlzp4c.o new file mode 100644 index 0000000..0bf5ddb Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/2jrenumvhlsoz1zeynohlzp4c.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/6luchf71amfhyfafbh8gy8ova.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/6luchf71amfhyfafbh8gy8ova.o new file mode 100644 index 0000000..08f6aff Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/6luchf71amfhyfafbh8gy8ova.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/99mc01sd6i7w06kqvd8g72vwv.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/99mc01sd6i7w06kqvd8g72vwv.o new file mode 100644 index 0000000..305c542 Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/99mc01sd6i7w06kqvd8g72vwv.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/a7uirwbfgoxvy305b6gyu1y7x.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/a7uirwbfgoxvy305b6gyu1y7x.o new file mode 100644 index 0000000..45aaffc Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/a7uirwbfgoxvy305b6gyu1y7x.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dep-graph.bin b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dep-graph.bin new file mode 100644 index 0000000..090dd8f Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dep-graph.bin differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dr0zghuqr1v75319cnpnyyeye.o b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dr0zghuqr1v75319cnpnyyeye.o new file mode 100644 index 0000000..e65739b Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/dr0zghuqr1v75319cnpnyyeye.o differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/query-cache.bin b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/query-cache.bin new file mode 100644 index 0000000..97a5063 Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/query-cache.bin differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/work-products.bin b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/work-products.bin new file mode 100644 index 0000000..f1cdda2 Binary files /dev/null and b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7-4ufalf7osy3bkn7678vjzm06t/work-products.bin differ diff --git a/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7.lock b/target/debug/incremental/server-0c1rp0yjp6hqk/s-h6l2zcg4ti-0k04iq7.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/dep-graph.bin b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/dep-graph.bin new file mode 100644 index 0000000..7476668 Binary files /dev/null and b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/dep-graph.bin differ diff --git a/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/query-cache.bin b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/query-cache.bin new file mode 100644 index 0000000..3fabb46 Binary files /dev/null and b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/query-cache.bin differ diff --git a/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/work-products.bin b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw-3a5sp5lfaooafl9djjqzwpjum/work-products.bin differ diff --git a/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw.lock b/target/debug/incremental/server-2pyk4vqi3t8rr/s-h6l304s07s-0zs55bw.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/dep-graph.bin b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/dep-graph.bin new file mode 100644 index 0000000..bfdf85a Binary files /dev/null and b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/dep-graph.bin differ diff --git a/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/query-cache.bin b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/query-cache.bin new file mode 100644 index 0000000..d25709f Binary files /dev/null and b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/query-cache.bin differ diff --git a/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/work-products.bin b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/work-products.bin new file mode 100644 index 0000000..121b4bc Binary files /dev/null and b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp-713trlfkcw3ky4xdf640ztrp4/work-products.bin differ diff --git a/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp.lock b/target/debug/incremental/server-3rzfc74u5e0dz/s-h6l304s07f-1tlz5sp.lock new file mode 100644 index 0000000..473a0f4 diff --git a/target/debug/server b/target/debug/server new file mode 100755 index 0000000..f265dba Binary files /dev/null and b/target/debug/server differ diff --git a/target/debug/server.d b/target/debug/server.d new file mode 100644 index 0000000..1d964a4 --- /dev/null +++ b/target/debug/server.d @@ -0,0 +1 @@ +/home/kbot/vault/target/debug/server: /home/kbot/vault/common/src/lib.rs /home/kbot/vault/server/src/main.rs