make a mess
This commit is contained in:
parent
0eed332c4b
commit
2b56f166b6
2007 changed files with 10276 additions and 21 deletions
1
doordesk-rs/.gitignore
vendored
1
doordesk-rs/.gitignore
vendored
|
@ -12,3 +12,4 @@ node_modules/
|
||||||
test-results/
|
test-results/
|
||||||
end2end/playwright-report/
|
end2end/playwright-report/
|
||||||
playwright/.cache/
|
playwright/.cache/
|
||||||
|
.sass-cache
|
||||||
|
|
|
@ -27,27 +27,69 @@ pub fn App(cx: Scope) -> impl IntoView {
|
||||||
}
|
}
|
||||||
.into_view(cx)
|
.into_view(cx)
|
||||||
}>
|
}>
|
||||||
|
<nav class="bg-gradient-to-b from-zinc-800 to-zinc-900 shadow-lg sticky top-0">
|
||||||
|
<ul class="container flex items-center p-3">
|
||||||
|
<li class="mx-1.5 sm:mx-6">
|
||||||
|
"DoorDesk"
|
||||||
|
</li>
|
||||||
|
<li class="mx-1.5 sm:mx-6">
|
||||||
|
<A href="" exact=true>"Home"</A>
|
||||||
|
</li>
|
||||||
|
<li class="mx-1.5 sm:mx-6">
|
||||||
|
<A href="/blog">"Blog"</A>
|
||||||
|
</li>
|
||||||
|
<li class="mx-1.5 sm:mx-6">
|
||||||
|
<A href="/projects">"Projects"</A>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="" view=|cx| view! { cx, <HomePage/> }/>
|
<Route path="/" view=|cx| view! { cx, <Home /> }/>
|
||||||
|
<Route path="/blog" view=|cx| view! { cx, <Blog /> }/>
|
||||||
|
<Route path="/projects" view=|cx| view! { cx, <Projects /> }/>
|
||||||
</Routes>
|
</Routes>
|
||||||
</main>
|
</main>
|
||||||
|
<p class="text-center hover:rotate-180 duration-200 w-8 m-auto"><a href="https://open.spotify.com/playlist/3JRNw9gpt1w5ptsw8uDeYc?si=8f7e4191113f41f9">":)"</a></p><br />
|
||||||
</Router>
|
</Router>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Renders the home page of your application.
|
/// Renders the home page of your application.
|
||||||
#[component]
|
#[component]
|
||||||
fn HomePage(cx: Scope) -> impl IntoView {
|
fn Article(cx: Scope) -> impl IntoView {
|
||||||
let (count, set_count) = create_signal(cx, 0);
|
let (count, set_count) = create_signal(cx, 0);
|
||||||
let on_click = move |_| set_count.update(|count| *count += 1);
|
let on_click = move |_| set_count.update(|count| *count += 1);
|
||||||
|
|
||||||
view! { cx,
|
view! { cx,
|
||||||
<article class="bg-zinc-700 mx-auto p-7 my-5 w-11/12 max-w-screen-xl rounded-md shadow-1g bg-opacity-10">
|
<article class="bg-zinc-700 mx-auto p-7 my-5 w-11/12 max-w-screen-xl rounded-md shadow-1g bg-opacity-10">
|
||||||
<h1 class="max-6-xs text-3xl text-orange-600 font-light capitalize">"Ligma."</h1>
|
<h1 class="max-6-xs text-3xl text-orange-600 font-light capitalize">"ayo"</h1>
|
||||||
<hr class="opacity-50" />
|
<hr class="opacity-50" />
|
||||||
<span class="opacity-50 text-xs pt-0 m-t pb-3.5">"today"</span>
|
<span class="opacity-50 text-xs pt-0 m-t pb-3.5">"today"</span>
|
||||||
<button on:click=on_click>"Click Me: " {count}</button>
|
<div>
|
||||||
|
<button on:click=on_click>"Click Me: " {count}</button>
|
||||||
|
</div>
|
||||||
</article>
|
</article>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[component]
|
||||||
|
fn Home(cx: Scope) -> impl IntoView {
|
||||||
|
view! { cx,
|
||||||
|
<Article />
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[component]
|
||||||
|
fn Blog(cx: Scope) -> impl IntoView {
|
||||||
|
view! { cx,
|
||||||
|
<Article />
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[component]
|
||||||
|
fn Projects(cx: Scope) -> impl IntoView {
|
||||||
|
view! { cx,
|
||||||
|
<Article />
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -67,8 +67,13 @@ pub fn ErrorTemplate(
|
||||||
let error_code= error.1.status_code();
|
let error_code= error.1.status_code();
|
||||||
view! {
|
view! {
|
||||||
cx,
|
cx,
|
||||||
<h2>{error_code.to_string()}</h2>
|
<article class="bg-zinc-700 mx-auto p-7 my-5 w-11/12 max-w-screen-xl rounded-md shadow-1g bg-opacity-10">
|
||||||
<p>"Error: " {error_string}</p>
|
<h1 class="max-6-xs text-3xl text-orange-600 font-light capitalize">
|
||||||
|
{error_code.to_string()}
|
||||||
|
</h1>
|
||||||
|
<hr class="opacity-50" />
|
||||||
|
<p>"Error: " {error_string}</p>
|
||||||
|
</article>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
8
doordesk-rs/src/routes/home.rs
Normal file
8
doordesk-rs/src/routes/home.rs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
use leptos::{component, view, IntoView, Scope};
|
||||||
|
|
||||||
|
#[component]
|
||||||
|
pub fn Home(cx: Scope) -> impl IntoView {
|
||||||
|
view! { cx,
|
||||||
|
<Article />
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,12 @@
|
||||||
body {
|
body {
|
||||||
@apply bg-gradient-to-br from-zinc-900 to-zinc-950;
|
@apply bg-gradient-to-br from-zinc-900 to-zinc-950;
|
||||||
@apply w-screen h-screen;
|
@apply w-screen h-screen;
|
||||||
|
@apply text-orange-50 antialiased font-mono tracking-tighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[aria-current="page"] {
|
||||||
|
border-bottom: 2px solid #de0002;
|
||||||
|
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* for innerHTML articles */
|
/* for innerHTML articles */
|
||||||
|
|
28
frontend/pnpm-lock.yaml
generated
28
frontend/pnpm-lock.yaml
generated
|
@ -1619,7 +1619,7 @@ packages:
|
||||||
postcss: ^8.1.0
|
postcss: ^8.1.0
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.21.9
|
browserslist: 4.21.9
|
||||||
caniuse-lite: 1.0.30001508
|
caniuse-lite: 1.0.30001509
|
||||||
fraction.js: 4.2.0
|
fraction.js: 4.2.0
|
||||||
normalize-range: 0.1.2
|
normalize-range: 0.1.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
|
@ -1727,8 +1727,8 @@ packages:
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
caniuse-lite: 1.0.30001508
|
caniuse-lite: 1.0.30001509
|
||||||
electron-to-chromium: 1.4.441
|
electron-to-chromium: 1.4.443
|
||||||
node-releases: 2.0.12
|
node-releases: 2.0.12
|
||||||
update-browserslist-db: 1.0.11(browserslist@4.21.9)
|
update-browserslist-db: 1.0.11(browserslist@4.21.9)
|
||||||
|
|
||||||
|
@ -1760,8 +1760,8 @@ packages:
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/caniuse-lite@1.0.30001508:
|
/caniuse-lite@1.0.30001509:
|
||||||
resolution: {integrity: sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==}
|
resolution: {integrity: sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==}
|
||||||
|
|
||||||
/chalk@2.4.2:
|
/chalk@2.4.2:
|
||||||
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
||||||
|
@ -1949,8 +1949,8 @@ packages:
|
||||||
/ee-first@1.1.1:
|
/ee-first@1.1.1:
|
||||||
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
||||||
|
|
||||||
/electron-to-chromium@1.4.441:
|
/electron-to-chromium@1.4.443:
|
||||||
resolution: {integrity: sha512-LlCgQ8zgYZPymf5H4aE9itwiIWH4YlCiv1HFLmmcBeFYi5E+3eaIFnjHzYtcFQbaKfAW+CqZ9pgxo33DZuoqPg==}
|
resolution: {integrity: sha512-QG+DKVaD7OkcCJ/0x/IHdVEcwU7cak9Vr9dXCNp7G9ojBZQWtwtRV77CBOrU49jsKygedFcNc/IHUrGljKV2Gw==}
|
||||||
|
|
||||||
/emoji-regex@8.0.0:
|
/emoji-regex@8.0.0:
|
||||||
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
||||||
|
@ -2825,7 +2825,7 @@ packages:
|
||||||
rollup: 3.25.3
|
rollup: 3.25.3
|
||||||
sirv: 2.0.3
|
sirv: 2.0.3
|
||||||
solid-start: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.8.2)(solid-js@1.7.7)(solid-start-node@0.2.26)(vite@4.3.9)
|
solid-start: 0.2.26(@solidjs/meta@0.28.5)(@solidjs/router@0.8.2)(solid-js@1.7.7)(solid-start-node@0.2.26)(vite@4.3.9)
|
||||||
terser: 5.18.1
|
terser: 5.18.2
|
||||||
undici: 5.22.1
|
undici: 5.22.1
|
||||||
vite: 4.3.9
|
vite: 4.3.9
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
@ -2895,10 +2895,10 @@ packages:
|
||||||
sirv: 2.0.3
|
sirv: 2.0.3
|
||||||
solid-js: 1.7.7
|
solid-js: 1.7.7
|
||||||
solid-start-node: 0.2.26(solid-start@0.2.26)(undici@5.22.1)(vite@4.3.9)
|
solid-start-node: 0.2.26(solid-start@0.2.26)(undici@5.22.1)(vite@4.3.9)
|
||||||
terser: 5.18.1
|
terser: 5.18.2
|
||||||
undici: 5.22.1
|
undici: 5.22.1
|
||||||
vite: 4.3.9
|
vite: 4.3.9
|
||||||
vite-plugin-inspect: 0.7.29(rollup@3.25.3)(vite@4.3.9)
|
vite-plugin-inspect: 0.7.30(rollup@3.25.3)(vite@4.3.9)
|
||||||
vite-plugin-solid: 2.7.0(solid-js@1.7.7)(vite@4.3.9)
|
vite-plugin-solid: 2.7.0(solid-js@1.7.7)(vite@4.3.9)
|
||||||
wait-on: 6.0.1(debug@4.3.4)
|
wait-on: 6.0.1(debug@4.3.4)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
@ -3008,8 +3008,8 @@ packages:
|
||||||
- ts-node
|
- ts-node
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/terser@5.18.1:
|
/terser@5.18.2:
|
||||||
resolution: {integrity: sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ==}
|
resolution: {integrity: sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -3130,8 +3130,8 @@ packages:
|
||||||
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
||||||
engines: {node: '>= 0.8'}
|
engines: {node: '>= 0.8'}
|
||||||
|
|
||||||
/vite-plugin-inspect@0.7.29(rollup@3.25.3)(vite@4.3.9):
|
/vite-plugin-inspect@0.7.30(rollup@3.25.3)(vite@4.3.9):
|
||||||
resolution: {integrity: sha512-vPbwChmLaHXu2ZXAtRlqXS7BTJoTNIhEjwLv55XGoPOtDOCMkh4X+ziy3/Y6ZhFRDvg0AggHLumn8YqEaIlMJg==}
|
resolution: {integrity: sha512-4z3bxULL9KGsSu2Gt+Z/lYQB2APpODG+2eHDGWK9NE4IGnwKfbz0lzJqVJGFtLGhvdwzGjt01aPgpMLYb/bibw==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: ^3.1.0 || ^4.0.0
|
vite: ^3.1.0 || ^4.0.0
|
||||||
|
|
|
@ -16,7 +16,7 @@ import {
|
||||||
|
|
||||||
import "./root.css";
|
import "./root.css";
|
||||||
|
|
||||||
export const DENNIS = "https://dennis.doordesk.net";
|
export const DENNIS = "http://localhost:9696";
|
||||||
|
|
||||||
|
|
||||||
export default function Root() {
|
export default function Root() {
|
||||||
|
|
1
reqtest/.gitignore
vendored
Normal file
1
reqtest/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
target/
|
1136
reqtest/Cargo.lock
generated
Normal file
1136
reqtest/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
12
reqtest/Cargo.toml
Normal file
12
reqtest/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[package]
|
||||||
|
name = "reqtest"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
reqwest = { version = "0.11.18", features = ["json"] }
|
||||||
|
serde = { version = "1.0.167", features = ["derive"] }
|
||||||
|
serde_json = "1.0.100"
|
||||||
|
tokio = { version = "1.29.1", features = ["full"] }
|
24
reqtest/src/main.rs
Normal file
24
reqtest/src/main.rs
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
|
struct Article {
|
||||||
|
content_type: String,
|
||||||
|
title: String,
|
||||||
|
date: String,
|
||||||
|
content: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn get_articles() {
|
||||||
|
let resp = reqwest::get("https://dennis.doordesk.net/home")
|
||||||
|
.await?
|
||||||
|
.json::<Vec<Article>>();
|
||||||
|
return resp.await;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() {
|
||||||
|
for article in get_articles() {
|
||||||
|
println!("{} {} {}", article.date, article.content_type, article.title);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
1
reqtest/target/.rustc_info.json
Normal file
1
reqtest/target/.rustc_info.json
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{"rustc_fingerprint":8429783010221213813,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.72.0-nightly (83964c156 2023-07-08)\nbinary: rustc\ncommit-hash: 83964c156db1f444050a38b2498dbd0da6d5d503\ncommit-date: 2023-07-08\nhost: x86_64-unknown-linux-gnu\nrelease: 1.72.0-nightly\nLLVM version: 16.0.5\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/adam/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\noverflow_checks\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\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}}
|
3
reqtest/target/CACHEDIR.TAG
Normal file
3
reqtest/target/CACHEDIR.TAG
Normal file
|
@ -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/
|
0
reqtest/target/debug/.cargo-lock
Normal file
0
reqtest/target/debug/.cargo-lock
Normal file
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
a94c2675bddf22ac
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":14886237245231788030,"profile":13178609178403335023,"path":14490541230616268692,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-5427750adef8bb82/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
198dd99602c48133
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":13621618965574745069,"profile":14473208297124147686,"path":364723764411795667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-3b40ceebe4fe0ec9/dep-lib-base64"}}],"rustflags":[],"metadata":13936919950537592407,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
3b2822db1eb17bd7
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":13621618965574745069,"profile":644273664987288228,"path":364723764411795667,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-3e6d434dcd42e916/dep-lib-base64"}}],"rustflags":[],"metadata":13936919950537592407,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
bc550f5cd554b44b
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\"]","target":15712369643656012375,"profile":14473208297124147686,"path":10732743755542153697,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-17eaae058c49a1b8/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
7962d910f80088e7
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\"]","target":15712369643656012375,"profile":644273664987288228,"path":10732743755542153697,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-1d31dfe9f72fab4b/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
8133b991d3c0a929
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":3193619734832674211,"profile":644273664987288228,"path":6027516177360121718,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-24c72a0629944d6f/dep-lib-bytes"}}],"rustflags":[],"metadata":11501112221997671841,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
9ed1beb66004adca
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":3193619734832674211,"profile":14473208297124147686,"path":6027516177360121718,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-b51fc775aa196866/dep-lib-bytes"}}],"rustflags":[],"metadata":11501112221997671841,"config":2202906307356721367,"compile_kind":0}
|
BIN
reqtest/target/debug/.fingerprint/cc-e3c476882e1153d5/dep-lib-cc
Normal file
BIN
reqtest/target/debug/.fingerprint/cc-e3c476882e1153d5/dep-lib-cc
Normal file
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
fa4ee089f5d09be8
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":15023190189141807623,"profile":13178609178403335023,"path":5620253438577705845,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cc-e3c476882e1153d5/dep-lib-cc"}}],"rustflags":[],"metadata":5862599371499774553,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
590c62bdf6e1b51d
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":10623512480563079566,"profile":644273664987288228,"path":10649492619017552568,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-d4664edabea63f35/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
0538ebdd54649c1e
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":10623512480563079566,"profile":14473208297124147686,"path":10649492619017552568,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-d488aff7a2e4faf1/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
b65edb14fb4dc32a
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"alloc\", \"default\"]","target":3132548559358952381,"profile":14473208297124147686,"path":1652799866565665365,"deps":[[2452538001284770427,"cfg_if",false,2205748233167910917]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/encoding_rs-2a9d8815cceae0c9/dep-lib-encoding_rs"}}],"rustflags":[],"metadata":10075669053249481654,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
c899febba900fbe9
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"alloc\", \"default\"]","target":3132548559358952381,"profile":644273664987288228,"path":1652799866565665365,"deps":[[2452538001284770427,"cfg_if",false,2140865647740062809]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/encoding_rs-fbd8bd1eb855a4ea/dep-lib-encoding_rs"}}],"rustflags":[],"metadata":10075669053249481654,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
8c84d39283292024
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":9581043667714295872,"profile":14473208297124147686,"path":8124408611584178315,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-71dd0c59a290bc92/dep-lib-fnv"}}],"rustflags":[],"metadata":17205452474433819084,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
40d41bc237a3832a
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"default\", \"std\"]","target":9581043667714295872,"profile":644273664987288228,"path":8124408611584178315,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-d76296c6599a31fb/dep-lib-fnv"}}],"rustflags":[],"metadata":17205452474433819084,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
2c86c8e632620386
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":8698141014386132125,"profile":14473208297124147686,"path":17830705991325152098,"deps":[[893634214035443264,"foreign_types_shared",false,4037963098443704682]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/foreign-types-24f1cea337253648/dep-lib-foreign-types"}}],"rustflags":[],"metadata":6845798330871618955,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
085c6a82610e77eb
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":8698141014386132125,"profile":644273664987288228,"path":17830705991325152098,"deps":[[893634214035443264,"foreign_types_shared",false,16455465971536666474]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/foreign-types-5402d8ef179fed27/dep-lib-foreign-types"}}],"rustflags":[],"metadata":6845798330871618955,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
6a69df420bba0938
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":1942304813793507732,"profile":14473208297124147686,"path":14232081425888420876,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/foreign-types-shared-b9efeccecca87a96/dep-lib-foreign-types-shared"}}],"rustflags":[],"metadata":9487440287552878973,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
6a9ff8c61d8f5de4
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[]","target":1942304813793507732,"profile":644273664987288228,"path":14232081425888420876,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/foreign-types-shared-e0d34a1ad648a197/dep-lib-foreign-types-shared"}}],"rustflags":[],"metadata":9487440287552878973,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
ca2ca7c12f01e8b5
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"alloc\", \"default\", \"std\"]","target":7950957999059523945,"profile":14473208297124147686,"path":8932743465274250190,"deps":[[8493363442430679536,"percent_encoding",false,17702650661666123366]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-4c8866fb5363c4dc/dep-lib-form_urlencoded"}}],"rustflags":[],"metadata":8992655875151632007,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
||||||
|
62d5d287ce94ee6c
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"alloc\", \"default\", \"std\"]","target":7950957999059523945,"profile":644273664987288228,"path":8932743465274250190,"deps":[[8493363442430679536,"percent_encoding",false,9585927202932249881]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-df81dfd8304be30b/dep-lib-form_urlencoded"}}],"rustflags":[],"metadata":8992655875151632007,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
||||||
|
5f35fb54409bb352
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"","target":0,"profile":0,"path":0,"deps":[[5419147072197360842,"build_script_build",false,11334906940267019145]],"local":[{"RerunIfChanged":{"output":"debug/build/futures-channel-2e090fae2e7f54e1/output","paths":["no_atomic_cas.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
||||||
|
89bbb9a8cead4d9d
|
|
@ -0,0 +1 @@
|
||||||
|
{"rustc":8385930461507754388,"features":"[\"alloc\", \"default\", \"std\"]","target":2297296889237502566,"profile":13178609178403335023,"path":2683177981195382275,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-channel-68f57b90f2288039/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":4882963976568030891,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
This file has an mtime of when this was started.
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue