landvex: Fixar och tester klara för alla komponenter
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"rustc_fingerprint":8170899571127002677,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/bernt/.rustup/toolchains/stable-aarch64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"neon\"\ntarget_has_atomic=\"128\"\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":""},"12203715465990969353":{"success":true,"status":"","code":0,"stdout":"rustc 1.96.0 (ac68faa20 2026-05-25)\nbinary: rustc\ncommit-hash: ac68faa20c58cbccd01ee7208bf3b6e93a7d7f96\ncommit-date: 2026-05-25\nhost: aarch64-unknown-linux-gnu\nrelease: 1.96.0\nLLVM version: 22.1.2\n","stderr":""}},"successes":{}}
|
||||
@@ -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/
|
||||
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
{"$message_type":"diagnostic","message":"cannot find module or crate `futures` in this scope","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap<u32, u32> = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/routes/ws.rs","byte_start":90,"byte_end":97,"line_start":4,"line_end":4,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":"use futures::{sink::SinkExt, stream::StreamExt};","highlight_start":5,"highlight_end":12}],"label":"use of unresolved module or unlinked crate `futures`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `futures`, use `cargo add futures` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0433]\u001b[0m\u001b[1m: cannot find module or crate `futures` in this scope\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/ws.rs:4:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use futures::{sink::SinkExt, stream::StreamExt};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^\u001b[0m \u001b[1m\u001b[91muse of unresolved module or unlinked crate `futures`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: if you wanted to use a crate named `futures`, use `cargo add futures` to add it to your `Cargo.toml`\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused import: `Query`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":77,"byte_end":82,"line_start":4,"line_end":4,"column_start":28,"column_end":33,"is_primary":true,"text":[{"text":" extract::{State, Path, Query, WebSocketUpgrade},","highlight_start":28,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":75,"byte_end":82,"line_start":4,"line_end":4,"column_start":26,"column_end":33,"is_primary":true,"text":[{"text":" extract::{State, Path, Query, WebSocketUpgrade},","highlight_start":26,"highlight_end":33}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `Query`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:4:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4\u001b[0m \u001b[1m\u001b[94m|\u001b[0m extract::{State, Path, Query, WebSocketUpgrade},\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused imports: `Deserialize` and `Serialize`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":186,"byte_end":197,"line_start":8,"line_end":8,"column_start":13,"column_end":24,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":13,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/main.rs","byte_start":199,"byte_end":208,"line_start":8,"line_end":8,"column_start":26,"column_end":35,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":26,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":174,"byte_end":211,"line_start":8,"line_end":9,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":1,"highlight_end":37},{"text":"use sqlx::{PgPool, Row};","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `Deserialize` and `Serialize`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:8:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use serde::{Deserialize, Serialize};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused import: `DateTime`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":297,"byte_end":305,"line_start":12,"line_end":12,"column_start":14,"column_end":22,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":14,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":297,"byte_end":307,"line_start":12,"line_end":12,"column_start":14,"column_end":24,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":14,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":296,"byte_end":297,"line_start":12,"line_end":12,"column_start":13,"column_end":14,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":13,"highlight_end":14}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":310,"byte_end":311,"line_start":12,"line_end":12,"column_start":27,"column_end":28,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":27,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `DateTime`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:12:14\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use chrono::{DateTime, Utc};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"no method named `get` found for struct `PgRow` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/routes/activity.rs","byte_start":1184,"byte_end":1187,"line_start":46,"line_end":46,"column_start":38,"column_end":41,"is_primary":true,"text":[{"text":" let id: uuid::Uuid = row.get(\"id\");","highlight_start":38,"highlight_end":41}],"label":"method not found in `PgRow`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sqlx-core-0.7.4/src/row.rs","byte_start":2060,"byte_end":2063,"line_start":67,"line_end":67,"column_start":8,"column_end":11,"is_primary":false,"text":[{"text":" fn get<'r, T, I>(&'r self, index: I) -> T","highlight_start":8,"highlight_end":11}],"label":"the method is available for `PgRow` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"items from traits can only be used if the trait is in scope","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"trait `Row` which provides `get` is implemented but not in scope; perhaps you want to import it","code":null,"level":"help","spans":[{"file_name":"src/routes/activity.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use axum::{","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use sqlx::Row;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0599]\u001b[0m\u001b[1m: no method named `get` found for struct `PgRow` in the current scope\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/activity.rs:46:38\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m46\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let id: uuid::Uuid = row.get(\"id\");\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^\u001b[0m \u001b[1m\u001b[91mmethod not found in `PgRow`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m::: \u001b[0m/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sqlx-core-0.7.4/src/row.rs:67:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m67\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get<'r, T, I>(&'r self, index: I) -> T\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---\u001b[0m \u001b[1m\u001b[94mthe method is available for `PgRow` here\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: items from traits can only be used if the trait is in scope\n\u001b[1m\u001b[96mhelp\u001b[0m: trait `Row` which provides `get` is implemented but not in scope; perhaps you want to import it\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 1\u001b[0m \u001b[92m+ use sqlx::Row;\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"no method named `split` found for struct `WebSocket` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/routes/ws.rs","byte_start":250,"byte_end":255,"line_start":7,"line_end":7,"column_start":45,"column_end":50,"is_primary":true,"text":[{"text":" let (mut sender, mut receiver) = socket.split();","highlight_start":45,"highlight_end":50}],"label":"method not found in `WebSocket`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs","byte_start":54735,"byte_end":54740,"line_start":1582,"line_end":1582,"column_start":8,"column_end":13,"is_primary":false,"text":[{"text":" fn split<Item>(self) -> (SplitSink<Self, Item>, SplitStream<Self>)","highlight_start":8,"highlight_end":13}],"label":"the method is available for `WebSocket` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"items from traits can only be used if the trait is in scope","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"trait `StreamExt` which provides `split` is implemented but not in scope; perhaps you want to import it","code":null,"level":"help","spans":[{"file_name":"src/routes/ws.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use axum::extract::ws::{WebSocket, Message};","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"use futures_util::stream::stream::StreamExt;\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0599]\u001b[0m\u001b[1m: no method named `split` found for struct `WebSocket` in the current scope\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/ws.rs:7:45\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (mut sender, mut receiver) = socket.split();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^\u001b[0m \u001b[1m\u001b[91mmethod not found in `WebSocket`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m::: \u001b[0m/home/bernt/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs:1582:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1582\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn split<Item>(self) -> (SplitSink<Self, Item>, SplitStream<Self>)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----\u001b[0m \u001b[1m\u001b[94mthe method is available for `WebSocket` here\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: items from traits can only be used if the trait is in scope\n\u001b[1m\u001b[96mhelp\u001b[0m: trait `StreamExt` which provides `split` is implemented but not in scope; perhaps you want to import it\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 1\u001b[0m \u001b[92m+ use futures_util::stream::stream::StreamExt;\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused import: `Row`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":230,"byte_end":233,"line_start":9,"line_end":9,"column_start":20,"column_end":23,"is_primary":true,"text":[{"text":"use sqlx::{PgPool, Row};","highlight_start":20,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `Row`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:9:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use sqlx::{PgPool, Row};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":5917,"byte_end":5922,"line_start":159,"line_end":159,"column_start":29,"column_end":34,"is_primary":true,"text":[{"text":"async fn health_check(State(state): State<Arc<AppState>>) -> Json<serde_json::Value> {","highlight_start":29,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":5917,"byte_end":5922,"line_start":159,"line_end":159,"column_start":29,"column_end":34,"is_primary":true,"text":[{"text":"async fn health_check(State(state): State<Arc<AppState>>) -> Json<serde_json::Value> {","highlight_start":29,"highlight_end":34}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:159:29\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m159\u001b[0m \u001b[1m\u001b[94m|\u001b[0m async fn health_check(State(state): State<Arc<AppState>>) -> Json<serde_json::Value> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}
|
||||
{"$message_type":"diagnostic","message":"aborting due to 3 previous errors; 5 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m: aborting due to 3 previous errors; 5 warnings emitted\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0433, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mSome errors have detailed explanations: E0433, E0599.\u001b[0m\n"}
|
||||
{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mFor more information about an error, try `rustc --explain E0433`.\u001b[0m\n"}
|
||||
+1
@@ -0,0 +1 @@
|
||||
dce5f7026febf321
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":13743846640444304018,"profile":2040997289075261528,"path":4942398508502643691,"deps":[[466357198569416633,"uuid",false,13314163933178013828],[3601586811267292532,"tower",false,13417398489940963700],[4093251733041599906,"futures",false,10653811629132285515],[4891297352905791595,"axum",false,6916359552836502021],[5380358770761950913,"tracing_subscriber",false,4694105582530304470],[8578586876803397814,"serde_json",false,6330154224915429150],[9394460649638301237,"tokio",false,11577086130116701328],[9904903520081483939,"anyhow",false,5013825234880771559],[10632374999838431203,"sqlx",false,3972580019833679762],[13548984313718623784,"serde",false,1332085600677865599],[14435908599267459652,"tower_http",false,16501737437271727441],[14757622794040968908,"tracing",false,15053511631705400711],[16117757646811882223,"chrono",false,8523123139449984762],[17325453097244291330,"reqwest",false,9490098874354004997]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/aamos-command-center-d6295ab4821edb52/dep-bin-aamos-command-center","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
{"$message_type":"diagnostic","message":"unused imports: `Deserialize` and `Serialize`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":161,"byte_end":172,"line_start":8,"line_end":8,"column_start":13,"column_end":24,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":13,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/main.rs","byte_start":174,"byte_end":183,"line_start":8,"line_end":8,"column_start":26,"column_end":35,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":26,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":149,"byte_end":186,"line_start":8,"line_end":9,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use serde::{Deserialize, Serialize};","highlight_start":1,"highlight_end":37},{"text":"use sqlx::PgPool;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `Deserialize` and `Serialize`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:8:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use serde::{Deserialize, Serialize};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused import: `DateTime`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":265,"byte_end":273,"line_start":12,"line_end":12,"column_start":14,"column_end":22,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":14,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":265,"byte_end":275,"line_start":12,"line_end":12,"column_start":14,"column_end":24,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":14,"highlight_end":24}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":264,"byte_end":265,"line_start":12,"line_end":12,"column_start":13,"column_end":14,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":13,"highlight_end":14}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":278,"byte_end":279,"line_start":12,"line_end":12,"column_start":27,"column_end":28,"is_primary":true,"text":[{"text":"use chrono::{DateTime, Utc};","highlight_start":27,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `DateTime`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:12:14\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use chrono::{DateTime, Utc};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused import: `sqlx::Row`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/routes/system.rs","byte_start":118,"byte_end":127,"line_start":7,"line_end":7,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":"use sqlx::Row;","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `sqlx::Row`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/system.rs:7:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use sqlx::Row;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused variable: `line`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/routes/journal.rs","byte_start":5085,"byte_end":5089,"line_start":160,"line_end":160,"column_start":20,"column_end":24,"is_primary":true,"text":[{"text":"fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {","highlight_start":20,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/routes/journal.rs","byte_start":5085,"byte_end":5089,"line_start":160,"line_end":160,"column_start":20,"column_end":24,"is_primary":true,"text":[{"text":"fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {","highlight_start":20,"highlight_end":24}],"label":null,"suggested_replacement":"_line","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `line`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/journal.rs:160:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m160\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_line`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}
|
||||
{"$message_type":"diagnostic","message":"unused variable: `col`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/routes/journal.rs","byte_start":5115,"byte_end":5118,"line_start":160,"line_end":160,"column_start":50,"column_end":53,"is_primary":true,"text":[{"text":"fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {","highlight_start":50,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/routes/journal.rs","byte_start":5115,"byte_end":5118,"line_start":160,"line_end":160,"column_start":50,"column_end":53,"is_primary":true,"text":[{"text":"fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {","highlight_start":50,"highlight_end":53}],"label":null,"suggested_replacement":"_col","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `col`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/journal.rs:160:50\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m160\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_col`\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"struct `DashboardData` is never constructed","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/models.rs","byte_start":3177,"byte_end":3190,"line_start":119,"line_end":119,"column_start":12,"column_end":25,"is_primary":true,"text":[{"text":"pub struct DashboardData {","highlight_start":12,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: struct `DashboardData` is never constructed\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/models.rs:119:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m119\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct DashboardData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}
|
||||
{"$message_type":"diagnostic","message":"function `get_line_amount` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/routes/journal.rs","byte_start":5069,"byte_end":5084,"line_start":160,"line_end":160,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {","highlight_start":4,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_line_amount` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/routes/journal.rs:160:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m160\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_line_amount(line: &sqlx::postgres::PgRow, col: &str) -> i64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"}
|
||||
{"$message_type":"diagnostic","message":"7 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 7 warnings emitted\u001b[0m\n\n"}
|
||||
+1
@@ -0,0 +1 @@
|
||||
70264d2b4e38e90b
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,8764269773167757054]],"local":[{"RerunIfChanged":{"output":"release/build/ahash-2128a1f7c33fd455/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
1b2c2a90b8f217d8
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":1369601567987815722,"path":2020094898246813561,"deps":[[79267046858109197,"zerocopy",false,4449252968013707445],[966925859616469517,"build_script_build",false,858279112375871088],[5855319743879205494,"once_cell",false,11429620746451259838],[7667230146095136825,"cfg_if",false,12297556918775047994],[18408407127522236545,"getrandom",false,7768336562861587044]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-46b9e016838fb661/dep-lib-ahash","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
fe865b71ecf0a079
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":1369601567987815722,"path":11897047185095676549,"deps":[[5398981501050481332,"version_check",false,487759791671819314]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-a109f479d3fe2a1a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
699edd0343dc7c91
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,8764269773167757054]],"local":[{"RerunIfChanged":{"output":"release/build/ahash-d87fd7b23b5e55d6/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
c40625b9443c7101
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"getrandom\", \"runtime-rng\", \"std\"]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":2040997289075261528,"path":2020094898246813561,"deps":[[79267046858109197,"zerocopy",false,10455971448249709888],[966925859616469517,"build_script_build",false,10483496212997447273],[5855319743879205494,"once_cell",false,13708832399288578193],[7667230146095136825,"cfg_if",false,78781898221383107],[18408407127522236545,"getrandom",false,17857847367574001760]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-ddf9877df20145c3/dep-lib-ahash","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
b91bd00944dc64f9
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"default\", \"fresh-rust\", \"nightly\", \"serde\", \"std\"]","target":5388200169723499962,"profile":10062236005175321273,"path":16592327340390490763,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/allocator-api2-83b6be5b9350caaf/dep-lib-allocator_api2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
ae731c224888298d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"default\", \"fresh-rust\", \"nightly\", \"serde\", \"std\"]","target":5388200169723499962,"profile":4067574213046180398,"path":16592327340390490763,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/allocator-api2-db2be312fdeda873/dep-lib-allocator_api2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
8ce038bb27011602
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9904903520081483939,"build_script_build",false,18300743111730497865]],"local":[{"RerunIfChanged":{"output":"release/build/anyhow-08cb2ff4e47de3ac/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
49895f0ce64cf9fd
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":1369601567987815722,"path":1354822287789481398,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-1f6d0840d3e453d5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
e735f59a7caf9445
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2040997289075261528,"path":7352096870882260173,"deps":[[9904903520081483939,"build_script_build",false,150308907719909516]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-7b53269cc05200e6/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
abea99005126c6a2
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":5116616278641129243,"profile":1369601567987815722,"path":2895544698071783192,"deps":[[1108254298283712113,"quote",false,12346198818348946717],[4289358735036141001,"proc_macro2",false,2466923278285998130],[14607138199358211871,"syn",false,4572365477969240138]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/async-trait-a6a582999a8deef6/dep-lib-async_trait","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
e601667fcd51cba2
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2515742790907851906,"profile":1369601567987815722,"path":2403134588919879400,"deps":[[5157631553186200874,"num_traits",false,42896207284557825]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/atoi-0064c826a76e5f89/dep-lib-atoi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
8ba7beac6d0dc58f
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2515742790907851906,"profile":2040997289075261528,"path":2403134588919879400,"deps":[[5157631553186200874,"num_traits",false,11816299632926758166]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/atoi-6e299a341d90d959/dep-lib-atoi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
bccba2364a977929
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[\"portable-atomic\"]","target":14411119108718288063,"profile":2040997289075261528,"path":1915199519464942613,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/atomic-waker-e92db70727ec2e75/dep-lib-atomic_waker","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
28f83eb7c4603b33
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":1369601567987815722,"path":14691547496011824260,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/autocfg-cfdc11b3d5fe0685/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
386576804a18e033
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"form\", \"http1\", \"json\", \"matched-path\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\", \"ws\"]","declared_features":"[\"__private_docs\", \"default\", \"form\", \"http1\", \"http2\", \"json\", \"macros\", \"matched-path\", \"multipart\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\", \"ws\"]","target":13920321295547257648,"profile":2040997289075261528,"path":2777920595211535039,"deps":[[784494742817713399,"tower_service",false,13268437010750965648],[2251399859588827949,"pin_project_lite",false,4988885227890412228],[2517136641825875337,"sync_wrapper",false,9967902423730930190],[3035134586790830808,"hyper",false,11334262305789857279],[3632162862999675140,"tower",false,9916666817685877602],[4359148418957042248,"axum_core",false,8999396517395582592],[5532778797167691009,"itoa",false,9619087413982131351],[5898568623609459682,"futures_util",false,15827704604205561787],[6328167575312831016,"tokio_tungstenite",false,10026229969675686880],[6803352382179706244,"percent_encoding",false,4348505878887178983],[7712452662827335977,"tower_layer",false,16973315690600901494],[8434571480224112386,"bytes",false,4425361270097965852],[8578586876803397814,"serde_json",false,6330154224915429150],[9394460649638301237,"tokio",false,11577086130116701328],[9678799920983747518,"matchit",false,11820823362860415402],[10229185211513642314,"mime",false,14363291638445985122],[10724389056617919257,"sha1",false,13198119103114331693],[11976082518617474977,"hyper_util",false,3337409609833092611],[13077212702700853852,"base64",false,197710843633282383],[13548984313718623784,"serde",false,1332085600677865599],[14084095096285906100,"http_body",false,2930543157708824510],[14156967978702956262,"rustversion",false,7272959064236923847],[14757622794040968908,"tracing",false,15053511631705400711],[14814583949208169760,"serde_path_to_error",false,10827638316209562049],[16542808166767769916,"serde_urlencoded",false,4964168753835487659],[16611674984963787466,"async_trait",false,11729104408877329067],[16786944793543832643,"memchr",false,15529009039555133791],[16900715236047033623,"http_body_util",false,8257837912677915635],[17371538545939333701,"http",false,4012937700050230857]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/axum-ad1939b3d5f2e291/dep-lib-axum","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
eb7fa0eaa944353d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"tracing\"]","declared_features":"[\"__private_docs\", \"tracing\"]","target":2565713999752801252,"profile":2040997289075261528,"path":15292076425892459978,"deps":[[784494742817713399,"tower_service",false,13268437010750965648],[2251399859588827949,"pin_project_lite",false,4988885227890412228],[2517136641825875337,"sync_wrapper",false,9967902423730930190],[5898568623609459682,"futures_util",false,3244146915438064489],[7712452662827335977,"tower_layer",false,16973315690600901494],[8434571480224112386,"bytes",false,4425361270097965852],[10229185211513642314,"mime",false,14363291638445985122],[14084095096285906100,"http_body",false,2930543157708824510],[14156967978702956262,"rustversion",false,7272959064236923847],[14757622794040968908,"tracing",false,15053511631705400711],[16611674984963787466,"async_trait",false,11729104408877329067],[16900715236047033623,"http_body_util",false,8257837912677915635],[17371538545939333701,"http",false,4012937700050230857]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/axum-core-486a6d8aaf2fcff2/dep-lib-axum_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
804e40a47347e47c
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"tracing\"]","declared_features":"[\"__private_docs\", \"tracing\"]","target":2565713999752801252,"profile":2040997289075261528,"path":15292076425892459978,"deps":[[784494742817713399,"tower_service",false,13268437010750965648],[2251399859588827949,"pin_project_lite",false,4988885227890412228],[2517136641825875337,"sync_wrapper",false,9967902423730930190],[5898568623609459682,"futures_util",false,15827704604205561787],[7712452662827335977,"tower_layer",false,16973315690600901494],[8434571480224112386,"bytes",false,4425361270097965852],[10229185211513642314,"mime",false,14363291638445985122],[14084095096285906100,"http_body",false,2930543157708824510],[14156967978702956262,"rustversion",false,7272959064236923847],[14757622794040968908,"tracing",false,15053511631705400711],[16611674984963787466,"async_trait",false,11729104408877329067],[16900715236047033623,"http_body_util",false,8257837912677915635],[17371538545939333701,"http",false,4012937700050230857]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/axum-core-820084131f1d62bf/dep-lib-axum_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
0502b36d5ed8fb5f
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"form\", \"http1\", \"json\", \"matched-path\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\", \"ws\"]","declared_features":"[\"__private_docs\", \"default\", \"form\", \"http1\", \"http2\", \"json\", \"macros\", \"matched-path\", \"multipart\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\", \"ws\"]","target":13920321295547257648,"profile":2040997289075261528,"path":2777920595211535039,"deps":[[784494742817713399,"tower_service",false,13268437010750965648],[2251399859588827949,"pin_project_lite",false,4988885227890412228],[2517136641825875337,"sync_wrapper",false,9967902423730930190],[3035134586790830808,"hyper",false,11334262305789857279],[3632162862999675140,"tower",false,12058093873794674540],[4359148418957042248,"axum_core",false,4410506906655817707],[5532778797167691009,"itoa",false,9619087413982131351],[5898568623609459682,"futures_util",false,3244146915438064489],[6328167575312831016,"tokio_tungstenite",false,5622269469770863541],[6803352382179706244,"percent_encoding",false,4348505878887178983],[7712452662827335977,"tower_layer",false,16973315690600901494],[8434571480224112386,"bytes",false,4425361270097965852],[8578586876803397814,"serde_json",false,6330154224915429150],[9394460649638301237,"tokio",false,11577086130116701328],[9678799920983747518,"matchit",false,11820823362860415402],[10229185211513642314,"mime",false,14363291638445985122],[10724389056617919257,"sha1",false,13198119103114331693],[11976082518617474977,"hyper_util",false,7546939297342787201],[13077212702700853852,"base64",false,197710843633282383],[13548984313718623784,"serde",false,1332085600677865599],[14084095096285906100,"http_body",false,2930543157708824510],[14156967978702956262,"rustversion",false,7272959064236923847],[14757622794040968908,"tracing",false,15053511631705400711],[14814583949208169760,"serde_path_to_error",false,10827638316209562049],[16542808166767769916,"serde_urlencoded",false,4964168753835487659],[16611674984963787466,"async_trait",false,11729104408877329067],[16786944793543832643,"memchr",false,15529009039555133791],[16900715236047033623,"http_body_util",false,8257837912677915635],[17371538545939333701,"http",false,4012937700050230857]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/axum-f6ed3ea7382f4a56/dep-lib-axum","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
dbb3ff5d503a843a
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":1369601567987815722,"path":12316733041402139766,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/base64-1b1c28ee28a62fb1/dep-lib-base64","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
8510bbef8956e341
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2040997289075261528,"path":12316733041402139766,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/base64-56ada73a3c1aa3ca/dep-lib-base64","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
4f2d01fbf668be02
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2040997289075261528,"path":7660686688554485333,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/base64-bffeb343559b9b16/dep-lib-base64","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
31d86eb4b5baa76d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":1369601567987815722,"path":13133951523946053133,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-6ce4be5c3479e6ec/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
04265406d8dfdc86
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2040997289075261528,"path":13133951523946053133,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-765f98ff397854cf/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
ff9686275df0f009
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":2040997289075261528,"path":8971532964010153708,"deps":[[10520923840501062997,"generic_array",false,18023817528693748459]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/block-buffer-7b70ef144a3336c4/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
699af8722d84341b
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":1369601567987815722,"path":8971532964010153708,"deps":[[10520923840501062997,"generic_array",false,17349179184171357899]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/block-buffer-df064aa4a1a56479/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
f1d40d367008c068
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":2040997289075261528,"path":17947950383692024843,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/byteorder-6e3a8fd85d179480/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
5c9bd2b0767f82db
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":1369601567987815722,"path":17947950383692024843,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/byteorder-ab39bdd0ab6eaeda/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
4457968be49d70ef
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":10956697789842490599,"path":14243994348687718714,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bytes-7d9603e547682af6/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
1cf3f5eaa00a6a3d
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":3654867079619179846,"path":14243994348687718714,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bytes-9ab8679fb35a705d/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
e8992adcbd0d7470
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[\"jobserver\", \"parallel\"]","target":11042037588551934598,"profile":18369320580169568572,"path":3602324827183593128,"deps":[[9159843920629750842,"find_msvc_tools",false,12326584652456874931],[12678166843757613889,"shlex",false,13488784663550082227]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cc-10a7ab8c6e897f7f/dep-lib-cc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
3ae7bbc4dcb2a9aa
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":1369601567987815722,"path":9433148093347736929,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-19b6a7ba2a83a898/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
c36d3712b8e31701
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2040997289075261528,"path":9433148093347736929,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-c28393f1568b0153/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
ae288ec725e743e4
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"clock\", \"iana-time-zone\", \"now\", \"std\", \"winapi\", \"windows-link\"]","declared_features":"[\"__internal_bench\", \"alloc\", \"arbitrary\", \"clock\", \"core-error\", \"default\", \"defmt\", \"iana-time-zone\", \"js-sys\", \"libc\", \"now\", \"oldtime\", \"pure-rust-locales\", \"rkyv\", \"rkyv-16\", \"rkyv-32\", \"rkyv-64\", \"rkyv-validation\", \"serde\", \"std\", \"unstable-locales\", \"wasm-bindgen\", \"wasmbind\", \"winapi\", \"windows-link\"]","target":15315924755136109342,"profile":1369601567987815722,"path":17780376413348889854,"deps":[[5157631553186200874,"num_traits",false,42896207284557825],[16619627449254928351,"iana_time_zone",false,13207134618162654502]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/chrono-36ff978373637af3/dep-lib-chrono","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
fa16d47f56374876
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"clock\", \"default\", \"iana-time-zone\", \"js-sys\", \"now\", \"oldtime\", \"serde\", \"std\", \"wasm-bindgen\", \"wasmbind\", \"winapi\", \"windows-link\"]","declared_features":"[\"__internal_bench\", \"alloc\", \"arbitrary\", \"clock\", \"core-error\", \"default\", \"defmt\", \"iana-time-zone\", \"js-sys\", \"libc\", \"now\", \"oldtime\", \"pure-rust-locales\", \"rkyv\", \"rkyv-16\", \"rkyv-32\", \"rkyv-64\", \"rkyv-validation\", \"serde\", \"std\", \"unstable-locales\", \"wasm-bindgen\", \"wasmbind\", \"winapi\", \"windows-link\"]","target":15315924755136109342,"profile":2040997289075261528,"path":17780376413348889854,"deps":[[5157631553186200874,"num_traits",false,11816299632926758166],[13548984313718623784,"serde",false,1332085600677865599],[16619627449254928351,"iana_time_zone",false,9712474382341530848]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/chrono-8b6d91dfd9c87b8d/dep-lib-chrono","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
d97b92bc5c0db396
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":1369601567987815722,"path":4698599470321272043,"deps":[[7098700569944897890,"libc",false,13849914081516727938]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cpufeatures-291c8773766a01e5/dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
33ab5fd3c5ffdebb
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":2040997289075261528,"path":4698599470321272043,"deps":[[7098700569944897890,"libc",false,10358284356093817449]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cpufeatures-a523430da0ca9835/dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
5adb824f4981be01
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":4924338683985979974,"profile":1369601567987815722,"path":4579834031769683611,"deps":[[17276112982712585484,"crc_catalog",false,979082227148354880]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crc-9a16845da344a42f/dep-lib-crc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@@ -0,0 +1 @@
|
||||
1dd3841f53cfb741
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":4924338683985979974,"profile":2040997289075261528,"path":4579834031769683611,"deps":[[17276112982712585484,"crc_catalog",false,2624612491466594195]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crc-9c880b0ef6c7b4df/dep-lib-crc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
9357ebba277f6c24
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":11450272957467397601,"profile":2040997289075261528,"path":5419088916058686867,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crc-catalog-acdad7ed5cd000c9/dep-lib-crc_catalog","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
407513231966960d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[]","declared_features":"[]","target":11450272957467397601,"profile":1369601567987815722,"path":5419088916058686867,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crc-catalog-debd8a67b9e5b85b/dep-lib-crc_catalog","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
39983ed59b225cf2
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"nightly\", \"std\"]","target":13714723178665796468,"profile":1419616050453328851,"path":10291709336219218876,"deps":[[4468123440088164316,"crossbeam_utils",false,10202621124655566643]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-queue-1e7eeea1eff2848d/dep-lib-crossbeam_queue","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
1fced9f02f753252
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"nightly\", \"std\"]","target":13714723178665796468,"profile":14791228037615401302,"path":10291709336219218876,"deps":[[4468123440088164316,"crossbeam_utils",false,9834928380622053575]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-queue-224f01e201c18748/dep-lib-crossbeam_queue","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
33cffd68dbfd968d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9626079250877207070,"profile":1419616050453328851,"path":6220781806239848824,"deps":[[4468123440088164316,"build_script_build",false,7946094511563512321]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-1d16bcd9af708a31/dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
c7a0622641af7c88
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9626079250877207070,"profile":14791228037615401302,"path":6220781806239848824,"deps":[[4468123440088164316,"build_script_build",false,6034848981002075972]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-55d5552e13fd23ee/dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
019a6ca9db32466e
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4468123440088164316,"build_script_build",false,2960203189544672470]],"local":[{"RerunIfChanged":{"output":"release/build/crossbeam-utils-cf59efac17c98d18/output","paths":["no_atomic.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
d6dcc9f71dc11429
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":1419616050453328851,"path":17580740248101843029,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-dcf9d0784b307c71/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
44bfc1992c17c053
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4468123440088164316,"build_script_build",false,2960203189544672470]],"local":[{"RerunIfChanged":{"output":"release/build/crossbeam-utils-e6672ec5a0c68af0/output","paths":["no_atomic.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
a898b7ce8b05927b
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":3697274117413853022,"features":"[\"std\"]","declared_features":"[\"getrandom\", \"rand_core\", \"std\"]","target":12082577455412410174,"profile":2040997289075261528,"path":15948873266087238522,"deps":[[6918147871599447195,"typenum",false,16874888847346247946],[10520923840501062997,"generic_array",false,18023817528693748459]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crypto-common-022979c1362b6763/dep-lib-crypto_common","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user