Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
*.swp
build
debug
target
cmake-build-*
Cargo.lock
/venv
Expand Down
Binary file added program/c/target/cpyth-native.o
Binary file not shown.
Binary file added program/c/target/libcpyth-bpf.a
Binary file not shown.
Binary file added program/c/target/libcpyth-native.a
Binary file not shown.
Binary file added program/c/target/oracle.so
Binary file not shown.
Binary file added program/c/target/oracle/upd_aggregate.o
Binary file not shown.
1 change: 0 additions & 1 deletion program/rust/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
bindings.rs
6 changes: 3 additions & 3 deletions program/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ publish = false
bindgen = "0.60.1"

[dependencies]
solana-program = "=1.13.3"
solana-program = "1.14.12"
bytemuck = "1.11.0"
thiserror = "1.0"
num-derive = "0.3"
num-traits = "0.2"

[dev-dependencies]
solana-program-test = "=1.13.3"
solana-sdk = "=1.13.3"
solana-program-test = "1.14.12"
solana-sdk = "1.14.12"
tokio = "1.14.1"
hex = "0.3.1"
quickcheck = "1"
Expand Down
3 changes: 3 additions & 0 deletions program/rust/bindings.rs

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion program/rust/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::{path::Path, env};

use {
bindgen::Builder,
std::{
Expand All @@ -7,7 +9,8 @@ use {
};

fn main() {
println!("cargo:rustc-link-search=./program/c/target");
let dir = env::var("CARGO_MANIFEST_DIR").unwrap();
println!("cargo:rustc-link-search=native={}", Path::new(&dir).join("../c/target").display());

// Generate and write bindings
let bindings = Builder::default()
Expand Down
16 changes: 8 additions & 8 deletions program/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
// Allow non upper case globals from C
#![allow(non_upper_case_globals)]

mod accounts;
mod c_oracle_header;
mod deserialize;
mod error;
mod instruction;
mod processor;
mod time_machine_types;
mod utils;
pub mod accounts;
pub mod c_oracle_header;
pub mod deserialize;
pub mod error;
pub mod instruction;
pub mod processor;
pub mod time_machine_types;
pub mod utils;

#[cfg(test)]
mod tests;
Expand Down
1 change: 0 additions & 1 deletion program/rust/src/tests/test_add_publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ fn test_add_publisher() {
let price_account = price_setup.as_account_info();
PriceAccount::initialize(&price_account, PC_VERSION).unwrap();


**price_account.try_borrow_mut_lamports().unwrap() = 100;

// Expect the instruction to fail, because the price account isn't rent exempt
Expand Down
1 change: 1 addition & 0 deletions target/.rustc_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc_fingerprint":9137844026236010645,"outputs":{"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/orex/.rustup/toolchains/1.66.1-aarch64-apple-darwin\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\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=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.66.1 (90743e729 2023-01-10)\nbinary: rustc\ncommit-hash: 90743e7298aca107ddaa0c202a4d3604e29bfeb6\ncommit-date: 2023-01-10\nhost: aarch64-apple-darwin\nrelease: 1.66.1\nLLVM version: 15.0.2\n","stderr":""}},"successes":{}}
3 changes: 3 additions & 0 deletions target/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -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/
3 changes: 3 additions & 0 deletions target/bpfel-unknown-unknown/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -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/
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6db686d91dec5d1f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[6564554279330852038,"build_script_build",false,2920705333587901477],[3803110334255062508,"build_script_build",false,6173115826247887989]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/ahash-7a9acbd6522085d5/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
653e501252a7e7c4
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":17564961922320999190,"profile":6269190295429226618,"path":2725305118434768600,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[6564554279330852038,"build_script_build",false,2260222200957548141],[8212377450068312478,"std",true,9197482520247180986],[11404496572234113603,"once_cell",false,18276161982723457259],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/ahash-7d725a974ae3b09d/dep-lib-ahash"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":6548036084630991988,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fda30d5008dfb8cd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":17978258598841637115,"profile":6269190295429226618,"path":7570463765738710182,"deps":[[3803110334255062508,"compiler_builtins",false,13546698399956051970],[15769198103576810567,"core",false,15906507524724193489]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/alloc-3c468f026cae9ecf/dep-lib-alloc"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8311380272888801894,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
00f5dc34f1894717
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":15391159540545039354,"profile":6269190295429226618,"path":12543553497701622387,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayref-fe4fe171cf1236a1/dep-lib-arrayref"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5065701478231546975,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d119e1ab08e64ccc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":15141271784968785197,"profile":6269190295429226618,"path":12321407216560760576,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayvec-d63eb6f092f2c5dc/dep-lib-arrayvec"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5019420986621020735,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5d3e69f8f3b8bb99
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":17413867883071742746,"profile":6269190295429226618,"path":4434867007161970942,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3348355416726397801,"serde",false,16487995624142638887],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bincode-cfcb961f068f7977/dep-lib-bincode"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8466748156696077862,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b381cfd0d9eb2c32
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"digest\", \"std\", \"traits-preview\"]","target":9064378672912024434,"profile":6269190295429226618,"path":5611334735358508847,"deps":[[53766558065908284,"constant_time_eq",false,17250619246279867984],[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2452538001284770427,"cfg_if",false,9440588162715160851],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[4174244234723058678,"arrayref",false,1677461055285818624],[7044288671118729987,"build_script_build",false,15137906660198901159],[8013147862121382061,"arrayvec",false,14721394206885091793],[8212377450068312478,"std",true,9197482520247180986],[8521755248767573771,"digest",false,15063337882673060284],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/blake3-0cede128be9472f9/dep-lib-blake3"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15248861160739124439,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a7e52c44e7a514d2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[7044288671118729987,"build_script_build",false,15738627087862953518],[3803110334255062508,"build_script_build",false,6173115826247887989]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/blake3-2dca96e25b44996d/output","paths":["c/blake3_sse41_x86-64_windows_msvc.asm","c/blake3_avx512_x86-64_windows_msvc.asm","c/blake3_sse2_x86-64_unix.S","c/blake3_sse2_x86-64_windows_msvc.asm","c/blake3_sse41_x86-64_unix.S","c/blake3.h","c/blake3_dispatch.c","c/blake3_sse41.c","c/blake3_avx512_x86-64_windows_gnu.S","c/Makefile.testing","c/test.py","c/blake3_portable.c","c/blake3_neon.c","c/blake3_avx512.c","c/README.md","c/example.c","c/blake3_avx2.c","c/main.c","c/.gitignore","c/blake3_avx2_x86-64_unix.S","c/blake3_avx2_x86-64_windows_gnu.S","c/blake3.c","c/blake3_sse2_x86-64_windows_gnu.S","c/blake3_impl.h","c/blake3_sse41_x86-64_windows_gnu.S","c/blake3_avx2_x86-64_windows_msvc.asm","c/blake3_sse2.c","c/blake3_avx512_x86-64_unix.S"]}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_PURE","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_NO_NEON","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_NO_NEON","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_PURE","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":"/Users/orex/.local/share/solana/install/releases/1.14.11/solana-release/bin/sdk/bpf/dependencies/bpf-tools/llvm/bin/clang"}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cb933ede8d295aaf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":597966434043285633,"profile":6269190295429226618,"path":6613225603942090287,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[10353982180171461258,"generic_array",false,5962339201854302425],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/block-buffer-443709e5c83d0699/dep-lib-block-buffer"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5573904726092117450,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ed5bb13d922d2d1a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":3730488758921852561,"profile":6269190295429226618,"path":8853155058772449088,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[1759060122986695407,"borsh_derive",false,817703358567855507],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[16284710795702459458,"hashbrown",false,7747631573932353953],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/borsh-9dc9a355f522f218/dep-lib-borsh"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":7032358266178414993,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b69da025251b1cb1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"std\"]","target":4860711247261189145,"profile":6269190295429226618,"path":2537431945235747662,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bs58-a53117607e59b9eb/dep-lib-bs58"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13637435404263704389,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0b884f47749faa62
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"","target":0,"profile":0,"path":0,"deps":[[12065847578846483130,"build_script_build",false,8505070744626390673],[3803110334255062508,"build_script_build",false,6173115826247887989]],"local":[{"Precalculated":"0.11.1"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a40b7c3f142334d8
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"serde\"]","target":16248139679678993569,"profile":6269190295429226618,"path":7993331052887247830,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3348355416726397801,"serde",false,16487995624142638887],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[12065847578846483130,"build_script_build",false,7109670283519166475],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bv-c6467643a47a08bd/dep-lib-bv"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":251181567152240604,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6ad555270d4fafc5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"bytemuck_derive\", \"derive\"]","target":17095924238635785037,"profile":6269190295429226618,"path":1876980798532713445,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[11253642256892302261,"bytemuck_derive",false,1391989589677076967],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bytemuck-45d43d91ba71bb50/dep-lib-bytemuck"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":5417891915809776353,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
13116565eab40383
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":10094334937643343087,"profile":6269190295429226618,"path":5159110178133010304,"deps":[[380644968921979807,"panic_abort",true,12726199737232597826],[1176695396265794032,"panic_unwind",true,1055937429935967358],[2874578906321136246,"alloc",true,14823843400285791229],[3803110334255062508,"compiler_builtins",true,13546698399956051970],[8212377450068312478,"std",true,9197482520247180986],[15769198103576810567,"core",true,15906507524724193489],[17653383803982867530,"proc_macro",true,10021020447940389312]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/cfg-if-1f45f924e8ff8af8/dep-lib-cfg-if"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":15478459636706160263}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
26cad4cea3259ddd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"compiler_builtins\", \"core\", \"rustc-dep-of-std\"]","target":10094334937643343087,"profile":6269190295429226618,"path":9276838037896702374,"deps":[[3803110334255062508,"compiler_builtins",false,13546698399956051970],[6064942063313465214,"core",false,1607780319976181113]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/cfg-if-f7113fba2c63e496/dep-lib-cfg-if"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
75ecd82c2350ab55
Loading