chore: version 1.51.0, path-dep the wasm examples, README notes
- socktop, socktop_agent, socktop_connector -> 1.51.0. - socktop_wasm_test and zellij_socktop_plugin consume the in-repo connector via path deps so wasm-feature API drift is caught at PR time instead of after publish. Immediately proved out: the wasm requests module needed the new sampled_at_ms field, invisible to native builds. - zellij plugin gains the standalone [workspace] marker (it could not be cargo-checked in-tree at all before). NOTE: its lib.rs has pre-existing compile errors unrelated to the connector (static mut STATE conflicts with register_plugin!, missing BTreeMap import) — needs its own rework, out of scope here. - README: sampled_at_ms in the example payload. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Generated
+2
-2
@@ -2412,7 +2412,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "socktop"
|
||||
version = "1.50.0"
|
||||
version = "1.51.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@@ -2431,7 +2431,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "socktop_agent"
|
||||
version = "1.50.2"
|
||||
version = "1.51.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
||||
@@ -416,6 +416,7 @@ Tip: If only the binary changed, restart is enough. If the unit file changed, ru
|
||||
|
||||
```json
|
||||
{
|
||||
"sampled_at_ms": 1786752000123,
|
||||
"cpu_total": 12.4,
|
||||
"cpu_per_core": [11.2, 15.7],
|
||||
"mem_total": 33554432,
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "socktop"
|
||||
version = "1.50.0"
|
||||
version = "1.51.0"
|
||||
authors = ["Jason Witty <jasonpwitty+socktop@proton.me>"]
|
||||
description = "Remote system monitor over WebSocket, TUI like top"
|
||||
edition = "2024"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "socktop_agent"
|
||||
version = "1.50.2"
|
||||
version = "1.51.0"
|
||||
authors = ["Jason Witty <jasonpwitty+socktop@proton.me>"]
|
||||
description = "Socktop agent daemon. Serves host metrics over WebSocket."
|
||||
edition = "2024"
|
||||
|
||||
@@ -46,6 +46,7 @@ pub async fn send_request_and_wait(
|
||||
// For now, return a placeholder metrics response indicating binary data received
|
||||
// TODO: Implement proper protobuf decoding for binary data
|
||||
let placeholder_metrics = Metrics {
|
||||
sampled_at_ms: None,
|
||||
cpu_total: 0.0,
|
||||
cpu_per_core: vec![0.0],
|
||||
mem_total: 0,
|
||||
|
||||
Generated
+1
-3
@@ -475,9 +475,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "socktop_connector"
|
||||
version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3a63dadaa5105df11b0684759a829012257d48e72a469cc554c0cf4394605f5a"
|
||||
version = "1.51.0"
|
||||
dependencies = [
|
||||
"flate2",
|
||||
"js-sys",
|
||||
|
||||
@@ -10,8 +10,8 @@ edition = "2021"
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
# Use WASM features for WebSocket connectivity (published version)
|
||||
socktop_connector = { version = "0.1.5", default-features = false, features = ["wasm"] }
|
||||
# Use WASM features for WebSocket connectivity (in-repo connector via path)
|
||||
socktop_connector = { path = "../socktop_connector", default-features = false, features = ["wasm"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
wasm-bindgen = "0.2"
|
||||
|
||||
Generated
+4384
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,9 @@ name = "zellij_socktop_plugin"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# Standalone package, not part of the parent workspace (same as socktop_wasm_test)
|
||||
[workspace]
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
@@ -10,7 +13,7 @@ crate-type = ["cdylib"]
|
||||
zellij-tile = "0.40.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
socktop_connector = { version = "0.1.5", default-features = false, features = ["wasm"] }
|
||||
socktop_connector = { path = "../socktop_connector", default-features = false, features = ["wasm"] }
|
||||
futures = "0.3"
|
||||
|
||||
[dependencies.chrono]
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc_fingerprint":15410446560398401115,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/jasonw/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"2493264757018902864":{"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: x86_64-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/
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
+1
@@ -0,0 +1 @@
|
||||
1c4e756cd7d5cf17
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"all\", \"alloc\", \"bin\", \"cargo-all\", \"core\", \"cpp_demangle\", \"default\", \"fallible-iterator\", \"loader\", \"rustc-demangle\", \"rustc-dep-of-std\", \"smallvec\", \"std\", \"wasm\"]","target":7709716332375371761,"profile":2241668132362809309,"path":13646899500103550558,"deps":[[18122473562710263097,"gimli",false,5009013607712618494]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/addr2line-3889f82da56c923e/dep-lib-addr2line","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 @@
|
||||
6633978d983cfbcd
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\"]","target":6569825234462323107,"profile":2241668132362809309,"path":16477429559295111439,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/adler2-011fdb1c26934692/dep-lib-adler2","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 @@
|
||||
915b9c2f1edae892
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"blobby\", \"default\", \"dev\", \"heapless\", \"std\"]","target":17699850227775374271,"profile":2241668132362809309,"path":526659330375803601,"deps":[[17738927884925025478,"generic_array",false,2333957161326891105]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aead-7ee386579ec9268b/dep-lib-aead","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 @@
|
||||
18021a5df0e6a616
|
||||
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[]","target":15188848890219333408,"profile":2241668132362809309,"path":8580132564503159960,"deps":[[7880011738006502139,"cipher",false,18157585675583447495],[17247424983952747352,"aes_soft",false,3972488419545052902]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aes-7489e98965cdae79/dep-lib-aes","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 @@
|
||||
f0b3cdac5673c4d3
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"aes\", \"alloc\", \"default\"]","declared_features":"[\"aes\", \"alloc\", \"default\", \"heapless\", \"std\", \"zeroize\"]","target":14755649619688925796,"profile":2241668132362809309,"path":12158335834777654263,"deps":[[1552950840212332988,"aead",false,10585950747317001105],[2487314826258863575,"ctr",false,13308215392957317356],[7719821159916746520,"subtle",false,17207282761987950351],[7880011738006502139,"cipher",false,18157585675583447495],[12419152769575215845,"ghash",false,13853575390738165228],[16883558493574317758,"aes",false,1632245834996908568]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aes-gcm-b94dfff3f8bb85bc/dep-lib-aes_gcm","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 @@
|
||||
e6f655a12b1d2137
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"semi_fixslice\"]","target":15741416177792721431,"profile":2241668132362809309,"path":3827217868119803007,"deps":[[7880011738006502139,"cipher",false,18157585675583447495],[13927846409374511869,"opaque_debug",false,6888222839025251272]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aes-soft-222c8572dbe47aad/dep-lib-aes_soft","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 @@
|
||||
3240da42e05c2e90
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":2241668132362809309,"path":3001368859775851590,"deps":[[12613788554453945248,"memchr",false,4760767297193619319]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-2fedbb04f4493ff9/dep-lib-aho_corasick","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 @@
|
||||
36340d624d8712b5
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2225463790103693989,"path":17426940001522930328,"deps":[[10364619138950789809,"build_script_build",false,5514133708288779743]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-0d4c9fbeaea12909/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
ec362a1a99fa6bea
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":15898178468353630419,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-0ee1330d60939d89/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 @@
|
||||
b7d65408d450d40a
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10364619138950789809,"build_script_build",false,10463845798452951772]],"local":[{"RerunIfChanged":{"output":"debug/build/anyhow-0f0baeddd061bf8f/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
df658f7e6423864c
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10364619138950789809,"build_script_build",false,16891870362859091692]],"local":[{"RerunIfChanged":{"output":"debug/build/anyhow-6855f3fb29d1644e/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
dc7a4059500c3791
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"backtrace\", \"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":15898178468353630419,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-d2208267e0c6520f/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 @@
|
||||
7b7af3e9cf5d57af
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"backtrace\", \"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2241668132362809309,"path":17426940001522930328,"deps":[[10364619138950789809,"build_script_build",false,780337507045004983]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-f33988e9ec2b740a/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.
|
||||
@@ -0,0 +1 @@
|
||||
b115a8b5460fcb52
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"experimental-strategies\", \"experimental-thread-local\", \"internal-test-strategies\", \"serde\", \"weak\"]","target":3875146365114806171,"profile":2241668132362809309,"path":209361042634296472,"deps":[[16991438365634268121,"rustversion",false,17645280650221248004]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/arc-swap-0ed163a7351354fd/dep-lib-arc_swap","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 @@
|
||||
3d363f6a1e408920
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"array-sizes-129-255\", \"array-sizes-33-128\", \"default\", \"serde\", \"std\", \"unstable-const-fn\"]","target":10123127388291370278,"profile":2241668132362809309,"path":10845529551968022874,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/arrayvec-52d89aa39fe89d07/dep-lib-arrayvec","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 @@
|
||||
ac2f472db7f55dbe
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[]","target":4756655004811021963,"profile":2225463790103693989,"path":16920460510259826377,"deps":[[2713742371683562785,"syn",false,12291857242565882470],[8949245912927223590,"quote",false,13025575884811989780]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-attributes-f05e7bbc310d542c/dep-lib-async_attributes","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 @@
|
||||
766663cbcdb6320d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"portable-atomic\", \"std\"]","target":2348331682808714104,"profile":2241668132362809309,"path":18095695755650671716,"deps":[[704993722384941283,"futures_core",false,9445737769001693686],[2251399859588827949,"pin_project_lite",false,12109455339434302527],[12100481297174703255,"concurrent_queue",false,2929355862389054194],[17148897597675491682,"event_listener_strategy",false,5961974098130494729]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-channel-0a82030ded83e60e/dep-lib-async_channel","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 @@
|
||||
de32911455029a8a
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[]","target":10271149513551571463,"profile":2241668132362809309,"path":1461130162811428048,"deps":[[704993722384941283,"futures_core",false,9445737769001693686],[1464803193346256239,"event_listener",false,8341039281747622162],[12100481297174703255,"concurrent_queue",false,2929355862389054194]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-channel-13bfe03c5c66b349/dep-lib-async_channel","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 @@
|
||||
c934ac95fdf522d0
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"static\"]","target":7483652822946339806,"profile":2241668132362809309,"path":14951765489380588524,"deps":[[332082171437474983,"fastrand",false,12047079406034810336],[867502981669738401,"async_task",false,2910000105609104844],[2251399859588827949,"pin_project_lite",false,12109455339434302527],[9090520973410485560,"futures_lite",false,13679018480482419684],[12100481297174703255,"concurrent_queue",false,2929355862389054194],[14895711841936801505,"slab",false,18353976936488081658]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-executor-9d172fcf18ef1e5b/dep-lib-async_executor","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 @@
|
||||
8ba16dfc7d427726
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[\"async-io\", \"default\"]","declared_features":"[\"async-io\", \"default\", \"tokio\", \"tokio-crate\", \"tokio02\", \"tokio02-crate\", \"tokio03\", \"tokio03-crate\"]","target":6513592296586730228,"profile":2241668132362809309,"path":9057861791747842848,"deps":[[5855319743879205494,"once_cell",false,2802405865659289905],[6633419628244209595,"async_channel",false,951023466325436022],[9090520973410485560,"futures_lite",false,13679018480482419684],[11099682918945173275,"blocking",false,15653528257567120483],[15550619062825872913,"async_io",false,4875448860714952253],[16549948769818400386,"async_lock",false,17474619914081585432],[16784658679919228589,"async_executor",false,14997820178583794889]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-global-executor-753f2c4582f4179d/dep-lib-async_global_executor","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
419d9080e4b3ad0b
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[15550619062825872913,"build_script_build",false,1121208361569585652]],"local":[{"Precalculated":"2.6.0"}],"rustflags":[],"config":0,"compile_kind":0}
|
||||
+1
@@ -0,0 +1 @@
|
||||
f4898d7e10558f0f
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"tracing\"]","target":5408242616063297496,"profile":4831801323318853768,"path":1702902945468378510,"deps":[[1924499573722464170,"autocfg",false,7943154379262010829]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-io-1c53ba7ce41a5629/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 @@
|
||||
3d667f57e812a943
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16696009966390864400,"features":"[]","declared_features":"[\"tracing\"]","target":10084595033463382892,"profile":595352080743954639,"path":4811583305924606563,"deps":[[189982446159473706,"parking",false,12351846635295087741],[7667230146095136825,"cfg_if",false,10646474851945608328],[9090520973410485560,"futures_lite",false,13679018480482419684],[11059951343532549838,"futures_io",false,9327035250472184219],[12100481297174703255,"concurrent_queue",false,2929355862389054194],[14271827750077741315,"polling",false,10626851110225878832],[14895711841936801505,"slab",false,18353976936488081658],[15550619062825872913,"build_script_build",false,841526499379027265],[18407532691439737072,"rustix",false,11369413027993962166]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-io-1cf7c98cfef87ac3/dep-lib-async_io","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