Skip to content

Commit

Permalink
chore: update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
quanghuynguyen1902 committed Jan 3, 2023
1 parent f25c3d7 commit 9aaa4ed
Show file tree
Hide file tree
Showing 1,015 changed files with 51,103 additions and 27 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.anchor
.DS_Store
target
**/*.rs.bk
node_modules
test-ledger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct CreateProposal<'info> {
pub fn handler(
ctx: Context<CreateProposal>,
recipient: Pubkey, image: String, title: String, subtitle: String,
spl: Pubkey, tags: String, amount: u64
spl: Pubkey, tags: String, amount: u64, is_owner: bool
) -> Result<()> {
let identifier = &mut ctx.accounts.identifier;
let proposal = &mut ctx.accounts.proposal;
Expand Down Expand Up @@ -64,6 +64,7 @@ pub fn handler(
proposal.spl = spl;
proposal.amount = amount;
proposal.tags = tags;
proposal.owner = is_owner;
proposal.identifier = identifier.count;
proposal.status = 0;

Expand Down
4 changes: 2 additions & 2 deletions programs/superteam-dao-contract/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ pub mod superteam_dao_contract {
}

pub fn create_proposal(ctx: Context<CreateProposal>, recipient: Pubkey, image: String, title: String, subtitle: String,
spl: Pubkey, tags: String, amount: u64) -> Result<()> {
create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount);
spl: Pubkey, tags: String, amount: u64, is_owner: bool) -> Result<()> {
create_proposal::handler(ctx, recipient, image, title, subtitle, spl, tags, amount, is_owner);
Ok(())
}

Expand Down
12 changes: 7 additions & 5 deletions programs/superteam-dao-contract/src/schemas/proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ pub struct Proposal {
pub recipient: Pubkey,
pub sender: Pubkey,
pub status: u8,
pub owner: bool,
pub spl: Pubkey,
pub amount: u64,
pub tags: String,
pub transaction: Option<String>,
pub image: String,
pub title: String,
pub subtitle: String,
pub spl: Pubkey,
pub amount: u64,
pub identifier: u64,
}

Expand All @@ -25,13 +26,14 @@ impl Proposal {
PUBKEY_SIZE + // recipient
PUBKEY_SIZE + // sender
1 + // status: 0-pending 1-cancel 2-approve 3-reject
1 + // owner
PUBKEY_SIZE + // spl
U64_SIZE + // amount
4 + MAX_LENGTH_TAGS + // tags
1 + 4 + LENGTH_TRANSACTION_HASH + // transaction hash
4 + MAX_LENGTH_IMAGE + // image
4 + MAX_LENGTH_TITLE + // title
4 + MAX_LENGTH_SUBTITLE + // subtitle
PUBKEY_SIZE + // spl
U64_SIZE + // amount
4 + MAX_LENGTH_TAGS + // tags
8 // identifier
}
}
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":6632251955565830193,"outputs":{"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n","stderr":""},"16203822066534773252":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.62.0-dev\nbinary: rustc\ncommit-hash: unknown\ncommit-date: unknown\nhost: x86_64-apple-darwin\nrelease: 1.62.0-dev\nLLVM version: 14.0.5\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/quanghuy/.cache/solana/v1.29/bpf-tools/rust\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"llvm14-builtins-abi\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\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_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=\"128\"\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=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"5377892648921972743":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\n___.so\nlib___.a\n/Users/quanghuy/.cache/solana/v1.29/bpf-tools/rust\ndebug_assertions\npanic=\"abort\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"bpf\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_feature=\"llvm14-builtins-abi\"\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=\"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=\"solana\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"solana\"\n","stderr":"warning: dropping unsupported crate type `dylib` for target `bpfel-unknown-unknown`\n\nwarning: dropping unsupported crate type `proc-macro` for target `bpfel-unknown-unknown`\n\nwarning: 2 warnings emitted\n\n"}},"successes":{}}
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.
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 @@
53eb4d5acdbea698
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":17564961922320999190,"profile":3188463645652688667,"path":3255580554280402883,"deps":[[5429148392333926843,"once_cell",false,8002793946084783818],[6564554279330852038,"build_script_build",false,3395339761657011240]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/ahash-7a926bfe4688dd92/dep-lib-ahash"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":6548036084630991988,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
285c532186ab1e2f
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,9107079993064650970]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/ahash-dabfca2bc3b0c1dd/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 @@
0ffa6545d8aa9b6c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"derive\", \"init-if-needed\"]","target":14769178442973885228,"profile":3188463645652688667,"path":11849608759687746880,"deps":[[323429331743837663,"anchor_attribute_interface",false,17675782664664859038],[413444663484405820,"anchor_attribute_constant",false,789406329348731646],[2237233735950521307,"bytemuck",false,831923489600250674],[2460075646832256811,"anchor_attribute_program",false,15613449016552207155],[3749852952842194459,"anchor_attribute_account",false,14012809224756519590],[3910685653900278224,"anchor_derive_accounts",false,5860081228534136370],[4174244234723058678,"arrayref",false,13934941302426343774],[4790332501662844689,"base64",false,885614249555248580],[5350860216513583043,"anchor_attribute_state",false,6707499523255009425],[6147790641371885936,"thiserror",false,2379563226906744716],[8471858776488485135,"anchor_attribute_event",false,17330028599675789484],[9957987110813333963,"solana_program",false,15026316037246536099],[12639858850933718058,"bincode",false,4041933787034621020],[13434381959712907675,"borsh",false,107933844335850117],[16141541804300825675,"anchor_attribute_error",false,12214136414968738723],[16921882576896437047,"anchor_attribute_access_control",false,2072632845817029107]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/anchor-lang-952d347bf18601b0/dep-lib-anchor-lang"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":12451300207677867161,"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 @@
6f64bd8c943db707
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"associated_token\", \"default\", \"mint\", \"spl-associated-token-account\", \"spl-token\", \"token\"]","target":6022960205461011764,"profile":3188463645652688667,"path":9275652321895239257,"deps":[[844940212579727508,"anchor_lang",false,7826036623340337679],[6302459069424122163,"spl_associated_token_account",false,17323982177908643476],[9338744480042532245,"spl_token",false,3261036190287987447],[9957987110813333963,"solana_program",false,15026316037246536099]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/anchor-spl-189387e198066fc1/dep-lib-anchor-spl"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13935969994132114007,"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 @@
5e990ab948db62c1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":15391159540545039354,"profile":3188463645652688667,"path":2565288443218755094,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayref-de75bf36e767b54a/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 @@
dcb24a652911b5b2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":15141271784968785197,"profile":3188463645652688667,"path":4735061081257666163,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/arrayvec-0e201af65276199a/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 @@
c4c5c3c077554a0c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":9667411782827515189,"profile":3188463645652688667,"path":3520527699411924459,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/base64-23dddadd5e4ea6b2/dep-lib-base64"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13936919950537592407,"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 @@
5c14d93d5dd51738
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":17413867883071742746,"profile":3188463645652688667,"path":6995372157040200038,"deps":[[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bincode-6c232a215714fec2/dep-lib-bincode"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":8466748156696077862,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b8bca8f986598dca
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,1543373914289258710]],"local":[{"RerunIfChanged":{"output":"bpfel-unknown-unknown/release/build/blake3-a9891ffac17129c7/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/quanghuy/.local/share/solana/install/releases/1.14.10/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 @@
440f4e9d3bac365b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"digest\", \"std\", \"traits-preview\"]","target":9064378672912024434,"profile":3188463645652688667,"path":14765280308072070739,"deps":[[53766558065908284,"constant_time_eq",false,7898040348755891446],[2452538001284770427,"cfg_if",false,18338716342890501705],[4174244234723058678,"arrayref",false,13934941302426343774],[7044288671118729987,"build_script_build",false,14595420403626720440],[8013147862121382061,"arrayvec",false,12877217579026526940],[8521755248767573771,"digest",false,16002447881788268692]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/blake3-b825656e3a8b3981/dep-lib-blake3"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":15248861160739124439,"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 @@
bb7a9a06320ccd54
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":597966434043285633,"profile":3188463645652688667,"path":7358170553645635423,"deps":[[10353982180171461258,"generic_array",false,1781241717886361214]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/block-buffer-0f1932531ee461b1/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 @@
8572e17242757f01
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"default\", \"std\"]","target":3730488758921852561,"profile":3188463645652688667,"path":15946090286340665144,"deps":[[1759060122986695407,"borsh_derive",false,2275537850582280715],[16284710795702459458,"hashbrown",false,9824290921925073709]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/borsh-4eb1848734047075/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 @@
783d34e16ae739bb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"alloc\", \"default\", \"std\"]","target":4860711247261189145,"profile":3188463645652688667,"path":5134708454509164649,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bs58-69a76d7cd7ea7674/dep-lib-bs58"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":13637435404263704389,"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 @@
3bfbe4786045f060
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"serde\"]","target":16248139679678993569,"profile":3188463645652688667,"path":9513805062784227720,"deps":[[12065847578846483130,"build_script_build",false,10204679701663021453],[13445702510275822123,"serde",false,18315824655022630439]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bv-8fa9941bcd07498c/dep-lib-bv"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":251181567152240604,"config":2202906307356721367,"compile_kind":15478459636706160263}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8d7943381f4e9e8d
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,4507800217528482745]],"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 @@
3223ed8d01968b0b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"bytemuck_derive\", \"derive\"]","target":17095924238635785037,"profile":3188463645652688667,"path":17719019524550005667,"deps":[[7303860194959237442,"bytemuck_derive",false,260353550253556121]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/bytemuck-fa283e4581d968a2/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 @@
4996a3e6593580fe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":10094334937643343087,"profile":3188463645652688667,"path":6870778980281362900,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/cfg-if-5414c4b57e87e2c9/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 @@
f6144c01da799b6d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[]","target":18110003449456326072,"profile":3188463645652688667,"path":11862861998845439230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/constant_time_eq-7aef60e22fbd7d7b/dep-lib-constant_time_eq"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":17632679035116730252,"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 @@
5c7d8dea295f6f03
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":17424618724053001979,"features":"[\"std\"]","target":3769126754866119548,"profile":3188463645652688667,"path":6646049090335043518,"deps":[[10353982180171461258,"generic_array",false,1781241717886361214],[11395083745183091805,"typenum",false,16617076635738972562]],"local":[{"CheckDepInfo":{"dep_info":"bpfel-unknown-unknown/release/.fingerprint/crypto-common-1f5184839d6dc8e7/dep-lib-crypto-common"}}],"rustflags":["-Zremap-cwd-prefix="],"metadata":3401955368041756111,"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 @@
9420b15a901d14de
Loading

0 comments on commit 9aaa4ed

Please sign in to comment.