├── program ├── Xargo.toml ├── src │ ├── lib.rs │ ├── state.rs │ ├── entrypoint.rs │ ├── error.rs │ ├── instruction.rs │ └── processor.rs ├── cargo.toml └── Cargo.lock ├── .gitignore ├── js ├── package.json ├── tsconfig.json ├── src │ └── index.ts └── yarn.lock └── README.md /program/Xargo.toml: -------------------------------------------------------------------------------- 1 | [target.bpfel-unknown-unknown.dependencies.std] 2 | features = [] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | target 3 | .history 4 | */yarn-error.log 5 | .DS_Store 6 | index.js -------------------------------------------------------------------------------- /program/src/lib.rs: -------------------------------------------------------------------------------- 1 | mod entrypoint; 2 | pub mod error; 3 | pub mod processor; 4 | pub mod instruction; 5 | pub mod state; 6 | 7 | pub use solana_program; 8 | 9 | solana_program::declare_id!("ReciQBw6sQKH9TVVJQDnbnJ5W7FP539tPHjZhRF4E9r"); -------------------------------------------------------------------------------- /program/src/state.rs: -------------------------------------------------------------------------------- 1 | use { 2 | borsh::{BorshDeserialize, BorshSerialize}, 3 | solana_program::{ 4 | pubkey::Pubkey, 5 | }, 6 | }; 7 | 8 | #[derive(BorshSerialize, BorshDeserialize, Debug)] 9 | pub struct WhiteListData { 10 | pub is_initialized: bool, 11 | pub white_list: Vec, 12 | } -------------------------------------------------------------------------------- /program/src/entrypoint.rs: -------------------------------------------------------------------------------- 1 | use solana_program::{ 2 | account_info::AccountInfo, entrypoint, entrypoint::ProgramResult, 3 | pubkey::Pubkey, 4 | }; 5 | 6 | entrypoint!(process_instruction); 7 | fn process_instruction( 8 | program_id: &Pubkey, 9 | accounts: &[AccountInfo], 10 | instruction_data: &[u8], 11 | ) -> ProgramResult { 12 | crate::processor::process_instruction(program_id, accounts, instruction_data) 13 | } -------------------------------------------------------------------------------- /program/cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | edition = "2018" 3 | name = "whitelist-program" 4 | version = "0.1.0" 5 | 6 | [dependencies] 7 | solana-program = "1.10.10" 8 | borsh = "0.9.1" 9 | borsh-derive = "0.9.0" 10 | num-derive = "0.3" 11 | num-traits = "0.2" 12 | thiserror = "1.0" 13 | 14 | [dev-dependencies] 15 | solana-program-test = "1.10.10" 16 | solana-sdk = "1.10.10" 17 | 18 | [lib] 19 | crate-type = ["cdylib", "lib"] 20 | 21 | [package.metadata.docs.rs] 22 | targets = ["x86_64-unknown-linux-gnu"] -------------------------------------------------------------------------------- /program/src/error.rs: -------------------------------------------------------------------------------- 1 | use num_derive::FromPrimitive; 2 | use solana_program::{decode_error::DecodeError, program_error::ProgramError}; 3 | use thiserror::Error; 4 | 5 | /// Errors that may be returned by the program. 6 | #[derive(Clone, Debug, Eq, Error, FromPrimitive, PartialEq)] 7 | pub enum AccountTestError { 8 | 9 | #[error("Incorrect authority provided on update or delete")] 10 | IncorrectAuthority, 11 | 12 | } 13 | impl From for ProgramError { 14 | fn from(e: AccountTestError) -> Self { 15 | ProgramError::Custom(e as u32) 16 | } 17 | } 18 | impl DecodeError for AccountTestError { 19 | fn type_of() -> &'static str { 20 | "AccountTest Error" 21 | } 22 | } -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solana-web3-reference", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "tsc -p .", 8 | "test": "yarn run build && node src/index.js" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/cryptogosu/solana-web3-reference.git" 13 | }, 14 | "keywords": [], 15 | "author": "", 16 | "license": "ISC", 17 | "bugs": { 18 | "url": "https://github.com/cryptogosu/solana-web3-reference/issues" 19 | }, 20 | "homepage": "https://github.com/cryptogosu/solana-web3-reference#readme", 21 | "dependencies": { 22 | "@solana/buffer-layout": "^4.0.0", 23 | "@solana/web3.js": "^1.42.0", 24 | "typescript": "^4.4.3" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /js/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 4 | "module": "commonjs", /* Specify what module code is generated. */ 5 | "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ 6 | "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 7 | "strict": true, /* Enable all strict type-checking options. */ 8 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /program/src/instruction.rs: -------------------------------------------------------------------------------- 1 | use crate::id; 2 | use { 3 | borsh::{BorshDeserialize, BorshSerialize}, 4 | solana_program::{ 5 | instruction::{AccountMeta, Instruction}, 6 | pubkey::Pubkey, 7 | }, 8 | }; 9 | 10 | #[derive(Clone, Debug, BorshSerialize, BorshDeserialize, PartialEq)] 11 | pub enum WhitelistInstruction { 12 | Initialize, 13 | AddKey { 14 | key: Pubkey, 15 | }, 16 | } 17 | 18 | pub fn initialize( 19 | funding_account: &Pubkey, 20 | white_list_account: &Pubkey, 21 | system_program: &Pubkey 22 | ) -> Instruction { 23 | Instruction::new_with_borsh( 24 | id(), 25 | &WhitelistInstruction::Initialize, 26 | vec![ 27 | AccountMeta::new(*funding_account, true), 28 | AccountMeta::new(*white_list_account, true), 29 | AccountMeta::new_readonly(*system_program, false), 30 | ], 31 | ) 32 | } 33 | 34 | pub fn add_key( 35 | funding_account: &Pubkey, 36 | white_list_account: &Pubkey, 37 | system_program: &Pubkey, 38 | new_key: &Pubkey, 39 | ) -> Instruction { 40 | Instruction::new_with_borsh( 41 | id(), 42 | &WhitelistInstruction::AddKey { 43 | key: *new_key 44 | }, 45 | vec![ 46 | AccountMeta::new(*funding_account, true), 47 | AccountMeta::new(*white_list_account, true), 48 | AccountMeta::new_readonly(*system_program, false), 49 | ], 50 | ) 51 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How to Change Account Size on Solana 2 | 3 | Accounts are a key part of developing on Solana. For the longest time accounts were static in size and the only way to change their size was to create a new account. Your entire dApp architecture chained down by the fact that you cannot change your account size. 4 | 5 | Now you can dynamically change the size of your accounts. 6 | 7 | ## Realloc 8 | 9 | The Realloc feature was enabled since slot 133920008, or May 15th, 2022. 10 | 11 | [`realloc`](https://docs.rs/solana-sdk/latest/solana_sdk/account_info/struct.AccountInfo.html#method.realloc) is a new method on the `AccountInfo` struct that allows you to set a new size for an account. 12 | 13 | The `realloc` method: 14 | 15 | ```rust 16 | pub fn realloc( 17 | &self, 18 | new_len: usize, 19 | zero_init: bool 20 | ) -> Result<(), ProgramError> 21 | ``` 22 | 23 | - `new_len` is defined as the new size in bytes 24 | - `zero_init` is used to zero out new bytes if the account is resized smaller then larger again in the same instruction. 25 | 26 | **Limitations**: 27 | 28 | - Realloc can only be used on Program owned accounts 29 | - Max increase in bytes per call is 10KB 30 | 31 | ## How to use Realloc 32 | 33 | When you change the size of an account you must also make sure the account is still rent-exempt. Before the change, you can calculate the new rent requirements and fund the account. 34 | 35 | ```rust 36 | let new_size = pda_account.data.borrow().len() + 32; 37 | let rent = Rent::get()?; 38 | let new_minimum_balance = rent.minimum_balance(new_size); 39 | 40 | let lamports_diff = new_minimum_balance.saturating_sub(pda_account.lamports()); 41 | invoke( 42 | &system_instruction::transfer(funding_account.key, pda_account.key, lamports_diff), 43 | &[ 44 | funding_account.clone(), 45 | pda_account.clone(), 46 | system_program.clone(), 47 | ], 48 | )?; 49 | ``` 50 | 51 | Once you guarantee that the account achieves the rent-exempt status with the new account size, you can realloc the account. 52 | 53 | ```rust 54 | pda_account.realloc(new_size, false)?; 55 | ``` 56 | 57 | That's it! 58 | 59 | ## Running this example 60 | 61 | To run this example, you need to run the following commands: 62 | 63 | ```bash 64 | # In /program 65 | $ cargo build-bpf 66 | $ solana program deploy .so 67 | 68 | # In /js 69 | $ yarn && yarn run test 70 | ``` 71 | 72 | ## Use Cases 73 | 74 | Dynamically changing the size of an account opens up the door to a ton of new use cases. 75 | 76 | You can: 77 | 78 | - Dynamically increase the size of a list 79 | - Migrate accounts on program upgrade 80 | - Allow users to pay their way for space 81 | 82 | and much more! -------------------------------------------------------------------------------- /js/src/index.ts: -------------------------------------------------------------------------------- 1 | import { 2 | Connection, 3 | Keypair, 4 | LAMPORTS_PER_SOL, 5 | PublicKey, 6 | sendAndConfirmTransaction, 7 | SystemProgram, 8 | Transaction, 9 | TransactionInstruction, 10 | } from '@solana/web3.js'; 11 | 12 | const BufferLayout = require("@solana/buffer-layout"); 13 | 14 | const PAYER_KEYPAIR = Keypair.generate(); 15 | 16 | const connection = new Connection('http://127.0.0.1:8899', 'confirmed'); 17 | const programId = new PublicKey( 18 | '8oWgidXhTxwt5Y5e867cj5L1ogfbx2vFpXYtpJd2naGs' 19 | ); 20 | 21 | const createList = async (pda: PublicKey) => { 22 | 23 | let initializeStruct = BufferLayout.struct([BufferLayout.u8('instruction')]); 24 | const data = Buffer.alloc(initializeStruct.span); 25 | 26 | initializeStruct.encode( 27 | { 28 | instruction: 0, 29 | }, 30 | data, 31 | ); 32 | 33 | const createPDAIx = new TransactionInstruction({ 34 | programId: programId, 35 | data: data, 36 | keys: [ 37 | { 38 | isSigner: true, 39 | isWritable: true, 40 | pubkey: PAYER_KEYPAIR.publicKey, 41 | }, 42 | { 43 | isSigner: false, 44 | isWritable: true, 45 | pubkey: pda, 46 | }, 47 | { 48 | isSigner: false, 49 | isWritable: false, 50 | pubkey: SystemProgram.programId, 51 | }, 52 | ], 53 | }); 54 | 55 | const transaction = new Transaction(); 56 | transaction.add(createPDAIx); 57 | 58 | return sendAndConfirmTransaction(connection, transaction, [PAYER_KEYPAIR]); 59 | } 60 | 61 | const addPubkey = async (pda: PublicKey, key: PublicKey) => { 62 | const publicKey = (property: string = 'publicKey'): Object => { 63 | return BufferLayout.blob(32, property); 64 | }; 65 | 66 | let addPubkeyStruct = BufferLayout.struct([BufferLayout.u8('instruction'), publicKey('key')]); 67 | const pubkeyData = Buffer.alloc(addPubkeyStruct.span); 68 | 69 | addPubkeyStruct.encode( 70 | { 71 | instruction: 1, 72 | key: key.toBuffer(), 73 | }, 74 | pubkeyData, 75 | ); 76 | 77 | const addPubkeyIx = new TransactionInstruction({ 78 | programId: programId, 79 | data: pubkeyData, 80 | keys: [ 81 | { 82 | isSigner: true, 83 | isWritable: true, 84 | pubkey: PAYER_KEYPAIR.publicKey, 85 | }, 86 | { 87 | isSigner: false, 88 | isWritable: true, 89 | pubkey: pda, 90 | }, 91 | { 92 | isSigner: false, 93 | isWritable: false, 94 | pubkey: SystemProgram.programId, 95 | }, 96 | ], 97 | }); 98 | 99 | const addPubkeyTx = new Transaction(); 100 | addPubkeyTx.add(addPubkeyIx); 101 | 102 | return sendAndConfirmTransaction(connection, addPubkeyTx, [PAYER_KEYPAIR]); 103 | } 104 | 105 | (async () => { 106 | // Airdop to Payer 107 | await connection.confirmTransaction( 108 | await connection.requestAirdrop(PAYER_KEYPAIR.publicKey, LAMPORTS_PER_SOL) 109 | ); 110 | 111 | const [pda] = await PublicKey.findProgramAddress( 112 | [Buffer.from('customaddress'), PAYER_KEYPAIR.publicKey.toBuffer()], 113 | programId 114 | ); 115 | 116 | console.log(`PDA: ${pda.toBase58()}`); 117 | 118 | const pdaTxHash = await createList(pda); 119 | console.log(`Created PDA successfully. Tx Hash: ${pdaTxHash}`); 120 | 121 | const initialAccountInfo = await connection.getAccountInfo(pda); 122 | console.log(`Initial Account length: ${initialAccountInfo?.data.length}`); 123 | 124 | const addKeyTxHash = await addPubkey(pda, Keypair.generate().publicKey); 125 | console.log(`Added key successfully. Tx Hash: ${addKeyTxHash}`); 126 | 127 | const finalAccountInfo = await connection.getAccountInfo(pda); 128 | console.log(`Final Account length: ${finalAccountInfo?.data.length}`); 129 | })(); 130 | 131 | 132 | -------------------------------------------------------------------------------- /program/src/processor.rs: -------------------------------------------------------------------------------- 1 | use { 2 | crate::{ 3 | instruction::WhitelistInstruction, 4 | state::WhiteListData, 5 | }, 6 | borsh::{BorshDeserialize, BorshSerialize}, 7 | solana_program::{ 8 | account_info::{next_account_info, AccountInfo}, 9 | entrypoint::ProgramResult, 10 | msg, 11 | program::invoke_signed, 12 | program::invoke, 13 | program_error::ProgramError, 14 | pubkey::Pubkey, 15 | sysvar::Sysvar, 16 | sysvar::rent::Rent, 17 | system_instruction, 18 | }, 19 | std::convert::TryInto, 20 | }; 21 | 22 | pub fn process_instruction( 23 | _program_id: &Pubkey, 24 | accounts: &[AccountInfo], 25 | input: &[u8], 26 | ) -> ProgramResult { 27 | // Length = BOOL + VEC + Pubkey * n (n = number of keys) 28 | const INITIAL_ACCOUNT_LEN: usize = 1 + 4 + 0 ; 29 | msg!("input: {:?}", input); 30 | 31 | let instruction = WhitelistInstruction::try_from_slice(input)?; 32 | 33 | let accounts_iter = &mut accounts.iter(); 34 | 35 | let funding_account = next_account_info(accounts_iter)?; 36 | let pda_account = next_account_info(accounts_iter)?; 37 | let system_program = next_account_info(accounts_iter)?; 38 | 39 | match instruction { 40 | WhitelistInstruction::Initialize => { 41 | msg!("Initialize"); 42 | 43 | let (pda, pda_bump) = Pubkey::find_program_address( 44 | &[ 45 | b"customaddress", 46 | &funding_account.key.to_bytes(), 47 | ], 48 | _program_id, 49 | ); 50 | 51 | let signers_seeds: &[&[u8]; 3] = &[ 52 | b"customaddress", 53 | &funding_account.key.to_bytes(), 54 | &[pda_bump], 55 | ]; 56 | 57 | if pda.ne(&pda_account.key) { 58 | return Err(ProgramError::InvalidAccountData); 59 | } 60 | 61 | let lamports_required = Rent::get()?.minimum_balance(INITIAL_ACCOUNT_LEN); 62 | let create_pda_account_ix = system_instruction::create_account( 63 | &funding_account.key, 64 | &pda_account.key, 65 | lamports_required, 66 | INITIAL_ACCOUNT_LEN.try_into().unwrap(), 67 | &_program_id, 68 | ); 69 | 70 | invoke_signed( 71 | &create_pda_account_ix, 72 | &[ 73 | funding_account.clone(), 74 | pda_account.clone(), 75 | system_program.clone(), 76 | ], 77 | &[signers_seeds], 78 | )?; 79 | 80 | let mut pda_account_state = WhiteListData::try_from_slice(&pda_account.data.borrow())?; 81 | 82 | pda_account_state.is_initialized = true; 83 | pda_account_state.white_list = Vec::new(); 84 | pda_account_state.serialize(&mut &mut pda_account.data.borrow_mut()[..])?; 85 | Ok(()) 86 | } 87 | WhitelistInstruction::AddKey { key } => { 88 | msg!("AddKey"); 89 | 90 | let mut pda_account_state = WhiteListData::try_from_slice(&pda_account.data.borrow())?; 91 | 92 | if !pda_account_state.is_initialized { 93 | return Err(ProgramError::InvalidAccountData); 94 | } 95 | 96 | let new_size = pda_account.data.borrow().len() + 32; 97 | 98 | let rent = Rent::get()?; 99 | let new_minimum_balance = rent.minimum_balance(new_size); 100 | 101 | let lamports_diff = new_minimum_balance.saturating_sub(pda_account.lamports()); 102 | invoke( 103 | &system_instruction::transfer(funding_account.key, pda_account.key, lamports_diff), 104 | &[ 105 | funding_account.clone(), 106 | pda_account.clone(), 107 | system_program.clone(), 108 | ], 109 | )?; 110 | 111 | pda_account.realloc(new_size, false)?; 112 | 113 | pda_account_state.white_list.push(key); 114 | pda_account_state.serialize(&mut &mut pda_account.data.borrow_mut()[..])?; 115 | 116 | Ok(()) 117 | } 118 | } 119 | } -------------------------------------------------------------------------------- /js/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2": 6 | version "7.17.9" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72" 8 | integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg== 9 | dependencies: 10 | regenerator-runtime "^0.13.4" 11 | 12 | "@ethersproject/bytes@^5.6.0": 13 | version "5.6.1" 14 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.6.1.tgz#24f916e411f82a8a60412344bf4a813b917eefe7" 15 | integrity sha512-NwQt7cKn5+ZE4uDn+X5RAXLp46E1chXoaMmrxAyA0rblpxz8t58lVkrHXoRIn0lz1joQElQ8410GqhTqMOwc6g== 16 | dependencies: 17 | "@ethersproject/logger" "^5.6.0" 18 | 19 | "@ethersproject/logger@^5.6.0": 20 | version "5.6.0" 21 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.6.0.tgz#d7db1bfcc22fd2e4ab574cba0bb6ad779a9a3e7a" 22 | integrity sha512-BiBWllUROH9w+P21RzoxJKzqoqpkyM1pRnEKG69bulE9TSQD8SAIvTQqIMZmmCO8pUNkgLP1wndX1gKghSpBmg== 23 | 24 | "@ethersproject/sha2@^5.5.0": 25 | version "5.6.0" 26 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.6.0.tgz#364c4c11cc753bda36f31f001628706ebadb64d9" 27 | integrity sha512-1tNWCPFLu1n3JM9t4/kytz35DkuF9MxqkGGEHNauEbaARdm2fafnOyw1s0tIQDPKF/7bkP1u3dbrmjpn5CelyA== 28 | dependencies: 29 | "@ethersproject/bytes" "^5.6.0" 30 | "@ethersproject/logger" "^5.6.0" 31 | hash.js "1.1.7" 32 | 33 | "@solana/buffer-layout-utils@^0.2.0": 34 | version "0.2.0" 35 | resolved "https://registry.yarnpkg.com/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz#b45a6cab3293a2eb7597cceb474f229889d875ca" 36 | integrity sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g== 37 | dependencies: 38 | "@solana/buffer-layout" "^4.0.0" 39 | "@solana/web3.js" "^1.32.0" 40 | bigint-buffer "^1.1.5" 41 | bignumber.js "^9.0.1" 42 | 43 | "@solana/buffer-layout@^4.0.0": 44 | version "4.0.0" 45 | resolved "https://registry.yarnpkg.com/@solana/buffer-layout/-/buffer-layout-4.0.0.tgz#75b1b11adc487234821c81dfae3119b73a5fd734" 46 | integrity sha512-lR0EMP2HC3+Mxwd4YcnZb0smnaDw7Bl2IQWZiTevRH5ZZBZn6VRWn3/92E3qdU4SSImJkA6IDHawOHAnx/qUvQ== 47 | dependencies: 48 | buffer "~6.0.3" 49 | 50 | "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.42.0": 51 | version "1.42.0" 52 | resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.42.0.tgz#296e4bbab1fbfc198b3e9c3d94016c3876eb6a2c" 53 | integrity sha512-QqGh5DWzrgsWRx4sCPDQIm3390b7buPR16tZI61slQaQwJ2ymrSXPQCe4PPTJEIlzGjCV3dkn2vpT2R32BfK2Q== 54 | dependencies: 55 | "@babel/runtime" "^7.12.5" 56 | "@ethersproject/sha2" "^5.5.0" 57 | "@solana/buffer-layout" "^4.0.0" 58 | "@solana/buffer-layout-utils" "^0.2.0" 59 | bn.js "^5.0.0" 60 | borsh "^0.7.0" 61 | bs58 "^4.0.1" 62 | buffer "6.0.1" 63 | cross-fetch "^3.1.4" 64 | fast-stable-stringify "^1.0.0" 65 | jayson "^3.4.4" 66 | js-sha3 "^0.8.0" 67 | rpc-websockets "^7.4.2" 68 | secp256k1 "^4.0.2" 69 | superstruct "^0.14.2" 70 | tweetnacl "^1.0.0" 71 | 72 | "@types/connect@^3.4.33": 73 | version "3.4.35" 74 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" 75 | integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== 76 | dependencies: 77 | "@types/node" "*" 78 | 79 | "@types/express-serve-static-core@^4.17.9": 80 | version "4.17.28" 81 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz#c47def9f34ec81dc6328d0b1b5303d1ec98d86b8" 82 | integrity sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig== 83 | dependencies: 84 | "@types/node" "*" 85 | "@types/qs" "*" 86 | "@types/range-parser" "*" 87 | 88 | "@types/lodash@^4.14.159": 89 | version "4.14.182" 90 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2" 91 | integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q== 92 | 93 | "@types/node@*": 94 | version "17.0.34" 95 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.34.tgz#3b0b6a50ff797280b8d000c6281d229f9c538cef" 96 | integrity sha512-XImEz7XwTvDBtzlTnm8YvMqGW/ErMWBsKZ+hMTvnDIjGCKxwK5Xpc+c/oQjOauwq8M4OS11hEkpjX8rrI/eEgA== 97 | 98 | "@types/node@^12.12.54": 99 | version "12.20.52" 100 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.52.tgz#2fd2dc6bfa185601b15457398d4ba1ef27f81251" 101 | integrity sha512-cfkwWw72849SNYp3Zx0IcIs25vABmFh73xicxhCkTcvtZQeIez15PpwQN8fY3RD7gv1Wrxlc9MEtfMORZDEsGw== 102 | 103 | "@types/qs@*": 104 | version "6.9.7" 105 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" 106 | integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== 107 | 108 | "@types/range-parser@*": 109 | version "1.2.4" 110 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" 111 | integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== 112 | 113 | "@types/ws@^7.4.4": 114 | version "7.4.7" 115 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" 116 | integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== 117 | dependencies: 118 | "@types/node" "*" 119 | 120 | JSONStream@^1.3.5: 121 | version "1.3.5" 122 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 123 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 124 | dependencies: 125 | jsonparse "^1.2.0" 126 | through ">=2.2.7 <3" 127 | 128 | base-x@^3.0.2: 129 | version "3.0.9" 130 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" 131 | integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== 132 | dependencies: 133 | safe-buffer "^5.0.1" 134 | 135 | base64-js@^1.3.1: 136 | version "1.5.1" 137 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 138 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 139 | 140 | bigint-buffer@^1.1.5: 141 | version "1.1.5" 142 | resolved "https://registry.yarnpkg.com/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442" 143 | integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA== 144 | dependencies: 145 | bindings "^1.3.0" 146 | 147 | bignumber.js@^9.0.1: 148 | version "9.0.2" 149 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.2.tgz#71c6c6bed38de64e24a65ebe16cfcf23ae693673" 150 | integrity sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw== 151 | 152 | bindings@^1.3.0: 153 | version "1.5.0" 154 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 155 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 156 | dependencies: 157 | file-uri-to-path "1.0.0" 158 | 159 | bn.js@^4.11.9: 160 | version "4.12.0" 161 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 162 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 163 | 164 | bn.js@^5.0.0, bn.js@^5.2.0: 165 | version "5.2.0" 166 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" 167 | integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== 168 | 169 | borsh@^0.7.0: 170 | version "0.7.0" 171 | resolved "https://registry.yarnpkg.com/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a" 172 | integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA== 173 | dependencies: 174 | bn.js "^5.2.0" 175 | bs58 "^4.0.0" 176 | text-encoding-utf-8 "^1.0.2" 177 | 178 | brorand@^1.1.0: 179 | version "1.1.0" 180 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 181 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 182 | 183 | bs58@^4.0.0, bs58@^4.0.1: 184 | version "4.0.1" 185 | resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" 186 | integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== 187 | dependencies: 188 | base-x "^3.0.2" 189 | 190 | buffer@6.0.1: 191 | version "6.0.1" 192 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2" 193 | integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ== 194 | dependencies: 195 | base64-js "^1.3.1" 196 | ieee754 "^1.2.1" 197 | 198 | buffer@~6.0.3: 199 | version "6.0.3" 200 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" 201 | integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== 202 | dependencies: 203 | base64-js "^1.3.1" 204 | ieee754 "^1.2.1" 205 | 206 | bufferutil@^4.0.1: 207 | version "4.0.6" 208 | resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" 209 | integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== 210 | dependencies: 211 | node-gyp-build "^4.3.0" 212 | 213 | commander@^2.20.3: 214 | version "2.20.3" 215 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 216 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 217 | 218 | cross-fetch@^3.1.4: 219 | version "3.1.5" 220 | resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" 221 | integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 222 | dependencies: 223 | node-fetch "2.6.7" 224 | 225 | delay@^5.0.0: 226 | version "5.0.0" 227 | resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" 228 | integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== 229 | 230 | elliptic@^6.5.4: 231 | version "6.5.4" 232 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 233 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 234 | dependencies: 235 | bn.js "^4.11.9" 236 | brorand "^1.1.0" 237 | hash.js "^1.0.0" 238 | hmac-drbg "^1.0.1" 239 | inherits "^2.0.4" 240 | minimalistic-assert "^1.0.1" 241 | minimalistic-crypto-utils "^1.0.1" 242 | 243 | es6-promise@^4.0.3: 244 | version "4.2.8" 245 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 246 | integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== 247 | 248 | es6-promisify@^5.0.0: 249 | version "5.0.0" 250 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 251 | integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= 252 | dependencies: 253 | es6-promise "^4.0.3" 254 | 255 | eventemitter3@^4.0.7: 256 | version "4.0.7" 257 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" 258 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== 259 | 260 | eyes@^0.1.8: 261 | version "0.1.8" 262 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 263 | integrity sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A= 264 | 265 | fast-stable-stringify@^1.0.0: 266 | version "1.0.0" 267 | resolved "https://registry.yarnpkg.com/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" 268 | integrity sha1-XFVDRisiru79NtBbNOUceMuG0xM= 269 | 270 | file-uri-to-path@1.0.0: 271 | version "1.0.0" 272 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 273 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 274 | 275 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 276 | version "1.1.7" 277 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 278 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 279 | dependencies: 280 | inherits "^2.0.3" 281 | minimalistic-assert "^1.0.1" 282 | 283 | hmac-drbg@^1.0.1: 284 | version "1.0.1" 285 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 286 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 287 | dependencies: 288 | hash.js "^1.0.3" 289 | minimalistic-assert "^1.0.0" 290 | minimalistic-crypto-utils "^1.0.1" 291 | 292 | ieee754@^1.2.1: 293 | version "1.2.1" 294 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 295 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 296 | 297 | inherits@^2.0.3, inherits@^2.0.4: 298 | version "2.0.4" 299 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 300 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 301 | 302 | isomorphic-ws@^4.0.1: 303 | version "4.0.1" 304 | resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" 305 | integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== 306 | 307 | jayson@^3.4.4: 308 | version "3.6.6" 309 | resolved "https://registry.yarnpkg.com/jayson/-/jayson-3.6.6.tgz#189984f624e398f831bd2be8e8c80eb3abf764a1" 310 | integrity sha512-f71uvrAWTtrwoww6MKcl9phQTC+56AopLyEenWvKVAIMz+q0oVGj6tenLZ7Z6UiPBkJtKLj4kt0tACllFQruGQ== 311 | dependencies: 312 | "@types/connect" "^3.4.33" 313 | "@types/express-serve-static-core" "^4.17.9" 314 | "@types/lodash" "^4.14.159" 315 | "@types/node" "^12.12.54" 316 | "@types/ws" "^7.4.4" 317 | JSONStream "^1.3.5" 318 | commander "^2.20.3" 319 | delay "^5.0.0" 320 | es6-promisify "^5.0.0" 321 | eyes "^0.1.8" 322 | isomorphic-ws "^4.0.1" 323 | json-stringify-safe "^5.0.1" 324 | lodash "^4.17.20" 325 | uuid "^8.3.2" 326 | ws "^7.4.5" 327 | 328 | js-sha3@^0.8.0: 329 | version "0.8.0" 330 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 331 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 332 | 333 | json-stringify-safe@^5.0.1: 334 | version "5.0.1" 335 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 336 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 337 | 338 | jsonparse@^1.2.0: 339 | version "1.3.1" 340 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 341 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 342 | 343 | lodash@^4.17.20: 344 | version "4.17.21" 345 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 346 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 347 | 348 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 349 | version "1.0.1" 350 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 351 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 352 | 353 | minimalistic-crypto-utils@^1.0.1: 354 | version "1.0.1" 355 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 356 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 357 | 358 | node-addon-api@^2.0.0: 359 | version "2.0.2" 360 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" 361 | integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== 362 | 363 | node-fetch@2.6.7: 364 | version "2.6.7" 365 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 366 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 367 | dependencies: 368 | whatwg-url "^5.0.0" 369 | 370 | node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: 371 | version "4.4.0" 372 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.4.0.tgz#42e99687ce87ddeaf3a10b99dc06abc11021f3f4" 373 | integrity sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ== 374 | 375 | regenerator-runtime@^0.13.4: 376 | version "0.13.9" 377 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 378 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 379 | 380 | rpc-websockets@^7.4.2: 381 | version "7.4.18" 382 | resolved "https://registry.yarnpkg.com/rpc-websockets/-/rpc-websockets-7.4.18.tgz#274c825c0efadbf6fe75f10289229ae537fe9ffb" 383 | integrity sha512-bVu+4qM5CkGVlTqJa6FaAxLbb5uRnyH4te7yjFvoCzbnif7PT4BcvXtNTprHlNvsH+/StB81zUQicxMrUrIomA== 384 | dependencies: 385 | "@babel/runtime" "^7.17.2" 386 | eventemitter3 "^4.0.7" 387 | uuid "^8.3.2" 388 | ws "^8.5.0" 389 | optionalDependencies: 390 | bufferutil "^4.0.1" 391 | utf-8-validate "^5.0.2" 392 | 393 | safe-buffer@^5.0.1: 394 | version "5.2.1" 395 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 396 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 397 | 398 | secp256k1@^4.0.2: 399 | version "4.0.3" 400 | resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" 401 | integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== 402 | dependencies: 403 | elliptic "^6.5.4" 404 | node-addon-api "^2.0.0" 405 | node-gyp-build "^4.2.0" 406 | 407 | superstruct@^0.14.2: 408 | version "0.14.2" 409 | resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" 410 | integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ== 411 | 412 | text-encoding-utf-8@^1.0.2: 413 | version "1.0.2" 414 | resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13" 415 | integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg== 416 | 417 | "through@>=2.2.7 <3": 418 | version "2.3.8" 419 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 420 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 421 | 422 | tr46@~0.0.3: 423 | version "0.0.3" 424 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 425 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 426 | 427 | tweetnacl@^1.0.0: 428 | version "1.0.3" 429 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" 430 | integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== 431 | 432 | typescript@^4.4.3: 433 | version "4.6.4" 434 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.4.tgz#caa78bbc3a59e6a5c510d35703f6a09877ce45e9" 435 | integrity sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg== 436 | 437 | utf-8-validate@^5.0.2: 438 | version "5.0.9" 439 | resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.9.tgz#ba16a822fbeedff1a58918f2a6a6b36387493ea3" 440 | integrity sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q== 441 | dependencies: 442 | node-gyp-build "^4.3.0" 443 | 444 | uuid@^8.3.2: 445 | version "8.3.2" 446 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 447 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 448 | 449 | webidl-conversions@^3.0.0: 450 | version "3.0.1" 451 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 452 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 453 | 454 | whatwg-url@^5.0.0: 455 | version "5.0.0" 456 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 457 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 458 | dependencies: 459 | tr46 "~0.0.3" 460 | webidl-conversions "^3.0.0" 461 | 462 | ws@^7.4.5: 463 | version "7.5.7" 464 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67" 465 | integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== 466 | 467 | ws@^8.5.0: 468 | version "8.6.0" 469 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.6.0.tgz#e5e9f1d9e7ff88083d0c0dd8281ea662a42c9c23" 470 | integrity sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw== 471 | -------------------------------------------------------------------------------- /program/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "Inflector" 7 | version = "0.11.4" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 | dependencies = [ 11 | "lazy_static", 12 | "regex", 13 | ] 14 | 15 | [[package]] 16 | name = "adler" 17 | version = "1.0.2" 18 | source = "registry+https://github.com/rust-lang/crates.io-index" 19 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 20 | 21 | [[package]] 22 | name = "aead" 23 | version = "0.4.3" 24 | source = "registry+https://github.com/rust-lang/crates.io-index" 25 | checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 26 | dependencies = [ 27 | "generic-array", 28 | ] 29 | 30 | [[package]] 31 | name = "aes" 32 | version = "0.7.5" 33 | source = "registry+https://github.com/rust-lang/crates.io-index" 34 | checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 35 | dependencies = [ 36 | "cfg-if", 37 | "cipher 0.3.0", 38 | "cpufeatures", 39 | "opaque-debug", 40 | ] 41 | 42 | [[package]] 43 | name = "aes-gcm-siv" 44 | version = "0.10.3" 45 | source = "registry+https://github.com/rust-lang/crates.io-index" 46 | checksum = "589c637f0e68c877bbd59a4599bbe849cac8e5f3e4b5a3ebae8f528cd218dcdc" 47 | dependencies = [ 48 | "aead", 49 | "aes", 50 | "cipher 0.3.0", 51 | "ctr", 52 | "polyval", 53 | "subtle", 54 | "zeroize", 55 | ] 56 | 57 | [[package]] 58 | name = "ahash" 59 | version = "0.7.6" 60 | source = "registry+https://github.com/rust-lang/crates.io-index" 61 | checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 62 | dependencies = [ 63 | "getrandom 0.2.6", 64 | "once_cell", 65 | "version_check", 66 | ] 67 | 68 | [[package]] 69 | name = "aho-corasick" 70 | version = "0.7.18" 71 | source = "registry+https://github.com/rust-lang/crates.io-index" 72 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 73 | dependencies = [ 74 | "memchr", 75 | ] 76 | 77 | [[package]] 78 | name = "aliasable" 79 | version = "0.1.3" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 82 | 83 | [[package]] 84 | name = "ansi_term" 85 | version = "0.12.1" 86 | source = "registry+https://github.com/rust-lang/crates.io-index" 87 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 88 | dependencies = [ 89 | "winapi", 90 | ] 91 | 92 | [[package]] 93 | name = "anyhow" 94 | version = "1.0.57" 95 | source = "registry+https://github.com/rust-lang/crates.io-index" 96 | checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" 97 | 98 | [[package]] 99 | name = "arrayref" 100 | version = "0.3.6" 101 | source = "registry+https://github.com/rust-lang/crates.io-index" 102 | checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 103 | 104 | [[package]] 105 | name = "arrayvec" 106 | version = "0.7.2" 107 | source = "registry+https://github.com/rust-lang/crates.io-index" 108 | checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 109 | 110 | [[package]] 111 | name = "ascii" 112 | version = "0.9.3" 113 | source = "registry+https://github.com/rust-lang/crates.io-index" 114 | checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" 115 | 116 | [[package]] 117 | name = "assert_matches" 118 | version = "1.5.0" 119 | source = "registry+https://github.com/rust-lang/crates.io-index" 120 | checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 121 | 122 | [[package]] 123 | name = "async-mutex" 124 | version = "1.4.0" 125 | source = "registry+https://github.com/rust-lang/crates.io-index" 126 | checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e" 127 | dependencies = [ 128 | "event-listener", 129 | ] 130 | 131 | [[package]] 132 | name = "async-trait" 133 | version = "0.1.53" 134 | source = "registry+https://github.com/rust-lang/crates.io-index" 135 | checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600" 136 | dependencies = [ 137 | "proc-macro2 1.0.38", 138 | "quote 1.0.18", 139 | "syn 1.0.94", 140 | ] 141 | 142 | [[package]] 143 | name = "atty" 144 | version = "0.2.14" 145 | source = "registry+https://github.com/rust-lang/crates.io-index" 146 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 147 | dependencies = [ 148 | "hermit-abi", 149 | "libc", 150 | "winapi", 151 | ] 152 | 153 | [[package]] 154 | name = "autocfg" 155 | version = "1.1.0" 156 | source = "registry+https://github.com/rust-lang/crates.io-index" 157 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 158 | 159 | [[package]] 160 | name = "base64" 161 | version = "0.12.3" 162 | source = "registry+https://github.com/rust-lang/crates.io-index" 163 | checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 164 | 165 | [[package]] 166 | name = "base64" 167 | version = "0.13.0" 168 | source = "registry+https://github.com/rust-lang/crates.io-index" 169 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 170 | 171 | [[package]] 172 | name = "base64ct" 173 | version = "1.5.0" 174 | source = "registry+https://github.com/rust-lang/crates.io-index" 175 | checksum = "dea908e7347a8c64e378c17e30ef880ad73e3b4498346b055c2c00ea342f3179" 176 | 177 | [[package]] 178 | name = "bincode" 179 | version = "1.3.3" 180 | source = "registry+https://github.com/rust-lang/crates.io-index" 181 | checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 182 | dependencies = [ 183 | "serde", 184 | ] 185 | 186 | [[package]] 187 | name = "bitflags" 188 | version = "1.3.2" 189 | source = "registry+https://github.com/rust-lang/crates.io-index" 190 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 191 | 192 | [[package]] 193 | name = "bitmaps" 194 | version = "2.1.0" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" 197 | dependencies = [ 198 | "typenum", 199 | ] 200 | 201 | [[package]] 202 | name = "blake3" 203 | version = "1.3.1" 204 | source = "registry+https://github.com/rust-lang/crates.io-index" 205 | checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f" 206 | dependencies = [ 207 | "arrayref", 208 | "arrayvec", 209 | "cc", 210 | "cfg-if", 211 | "constant_time_eq", 212 | "digest 0.10.3", 213 | ] 214 | 215 | [[package]] 216 | name = "block-buffer" 217 | version = "0.9.0" 218 | source = "registry+https://github.com/rust-lang/crates.io-index" 219 | checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 220 | dependencies = [ 221 | "block-padding", 222 | "generic-array", 223 | ] 224 | 225 | [[package]] 226 | name = "block-buffer" 227 | version = "0.10.2" 228 | source = "registry+https://github.com/rust-lang/crates.io-index" 229 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 230 | dependencies = [ 231 | "generic-array", 232 | ] 233 | 234 | [[package]] 235 | name = "block-padding" 236 | version = "0.2.1" 237 | source = "registry+https://github.com/rust-lang/crates.io-index" 238 | checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" 239 | 240 | [[package]] 241 | name = "borsh" 242 | version = "0.9.3" 243 | source = "registry+https://github.com/rust-lang/crates.io-index" 244 | checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa" 245 | dependencies = [ 246 | "borsh-derive", 247 | "hashbrown", 248 | ] 249 | 250 | [[package]] 251 | name = "borsh-derive" 252 | version = "0.9.3" 253 | source = "registry+https://github.com/rust-lang/crates.io-index" 254 | checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775" 255 | dependencies = [ 256 | "borsh-derive-internal", 257 | "borsh-schema-derive-internal", 258 | "proc-macro-crate 0.1.5", 259 | "proc-macro2 1.0.38", 260 | "syn 1.0.94", 261 | ] 262 | 263 | [[package]] 264 | name = "borsh-derive-internal" 265 | version = "0.9.3" 266 | source = "registry+https://github.com/rust-lang/crates.io-index" 267 | checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065" 268 | dependencies = [ 269 | "proc-macro2 1.0.38", 270 | "quote 1.0.18", 271 | "syn 1.0.94", 272 | ] 273 | 274 | [[package]] 275 | name = "borsh-schema-derive-internal" 276 | version = "0.9.3" 277 | source = "registry+https://github.com/rust-lang/crates.io-index" 278 | checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0" 279 | dependencies = [ 280 | "proc-macro2 1.0.38", 281 | "quote 1.0.18", 282 | "syn 1.0.94", 283 | ] 284 | 285 | [[package]] 286 | name = "bs58" 287 | version = "0.4.0" 288 | source = "registry+https://github.com/rust-lang/crates.io-index" 289 | checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" 290 | 291 | [[package]] 292 | name = "bumpalo" 293 | version = "3.9.1" 294 | source = "registry+https://github.com/rust-lang/crates.io-index" 295 | checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" 296 | 297 | [[package]] 298 | name = "bv" 299 | version = "0.11.1" 300 | source = "registry+https://github.com/rust-lang/crates.io-index" 301 | checksum = "8834bb1d8ee5dc048ee3124f2c7c1afcc6bc9aed03f11e9dfd8c69470a5db340" 302 | dependencies = [ 303 | "feature-probe", 304 | "serde", 305 | ] 306 | 307 | [[package]] 308 | name = "bytemuck" 309 | version = "1.9.1" 310 | source = "registry+https://github.com/rust-lang/crates.io-index" 311 | checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc" 312 | dependencies = [ 313 | "bytemuck_derive", 314 | ] 315 | 316 | [[package]] 317 | name = "bytemuck_derive" 318 | version = "1.1.0" 319 | source = "registry+https://github.com/rust-lang/crates.io-index" 320 | checksum = "562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e" 321 | dependencies = [ 322 | "proc-macro2 1.0.38", 323 | "quote 1.0.18", 324 | "syn 1.0.94", 325 | ] 326 | 327 | [[package]] 328 | name = "byteorder" 329 | version = "1.4.3" 330 | source = "registry+https://github.com/rust-lang/crates.io-index" 331 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 332 | 333 | [[package]] 334 | name = "bytes" 335 | version = "1.1.0" 336 | source = "registry+https://github.com/rust-lang/crates.io-index" 337 | checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 338 | 339 | [[package]] 340 | name = "bzip2" 341 | version = "0.4.3" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 344 | dependencies = [ 345 | "bzip2-sys", 346 | "libc", 347 | ] 348 | 349 | [[package]] 350 | name = "bzip2-sys" 351 | version = "0.1.11+1.0.8" 352 | source = "registry+https://github.com/rust-lang/crates.io-index" 353 | checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 354 | dependencies = [ 355 | "cc", 356 | "libc", 357 | "pkg-config", 358 | ] 359 | 360 | [[package]] 361 | name = "caps" 362 | version = "0.5.3" 363 | source = "registry+https://github.com/rust-lang/crates.io-index" 364 | checksum = "61bf7211aad104ce2769ec05efcdfabf85ee84ac92461d142f22cf8badd0e54c" 365 | dependencies = [ 366 | "errno", 367 | "libc", 368 | "thiserror", 369 | ] 370 | 371 | [[package]] 372 | name = "cc" 373 | version = "1.0.73" 374 | source = "registry+https://github.com/rust-lang/crates.io-index" 375 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 376 | dependencies = [ 377 | "jobserver", 378 | ] 379 | 380 | [[package]] 381 | name = "cfg-if" 382 | version = "1.0.0" 383 | source = "registry+https://github.com/rust-lang/crates.io-index" 384 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 385 | 386 | [[package]] 387 | name = "chrono" 388 | version = "0.4.19" 389 | source = "registry+https://github.com/rust-lang/crates.io-index" 390 | checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 391 | dependencies = [ 392 | "libc", 393 | "num-integer", 394 | "num-traits", 395 | "serde", 396 | "time 0.1.43", 397 | "winapi", 398 | ] 399 | 400 | [[package]] 401 | name = "chrono-humanize" 402 | version = "0.2.1" 403 | source = "registry+https://github.com/rust-lang/crates.io-index" 404 | checksum = "2eddc119501d583fd930cb92144e605f44e0252c38dd89d9247fffa1993375cb" 405 | dependencies = [ 406 | "chrono", 407 | ] 408 | 409 | [[package]] 410 | name = "cipher" 411 | version = "0.3.0" 412 | source = "registry+https://github.com/rust-lang/crates.io-index" 413 | checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 414 | dependencies = [ 415 | "generic-array", 416 | ] 417 | 418 | [[package]] 419 | name = "cipher" 420 | version = "0.4.3" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 423 | dependencies = [ 424 | "crypto-common", 425 | "inout", 426 | ] 427 | 428 | [[package]] 429 | name = "clap" 430 | version = "2.34.0" 431 | source = "registry+https://github.com/rust-lang/crates.io-index" 432 | checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 433 | dependencies = [ 434 | "ansi_term", 435 | "atty", 436 | "bitflags", 437 | "strsim", 438 | "textwrap", 439 | "unicode-width", 440 | "vec_map", 441 | ] 442 | 443 | [[package]] 444 | name = "combine" 445 | version = "3.8.1" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" 448 | dependencies = [ 449 | "ascii", 450 | "byteorder", 451 | "either", 452 | "memchr", 453 | "unreachable", 454 | ] 455 | 456 | [[package]] 457 | name = "console" 458 | version = "0.15.0" 459 | source = "registry+https://github.com/rust-lang/crates.io-index" 460 | checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31" 461 | dependencies = [ 462 | "encode_unicode", 463 | "libc", 464 | "once_cell", 465 | "regex", 466 | "terminal_size", 467 | "unicode-width", 468 | "winapi", 469 | ] 470 | 471 | [[package]] 472 | name = "console_error_panic_hook" 473 | version = "0.1.7" 474 | source = "registry+https://github.com/rust-lang/crates.io-index" 475 | checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 476 | dependencies = [ 477 | "cfg-if", 478 | "wasm-bindgen", 479 | ] 480 | 481 | [[package]] 482 | name = "console_log" 483 | version = "0.2.0" 484 | source = "registry+https://github.com/rust-lang/crates.io-index" 485 | checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494" 486 | dependencies = [ 487 | "log", 488 | "web-sys", 489 | ] 490 | 491 | [[package]] 492 | name = "const-oid" 493 | version = "0.7.1" 494 | source = "registry+https://github.com/rust-lang/crates.io-index" 495 | checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" 496 | 497 | [[package]] 498 | name = "constant_time_eq" 499 | version = "0.1.5" 500 | source = "registry+https://github.com/rust-lang/crates.io-index" 501 | checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 502 | 503 | [[package]] 504 | name = "core-foundation" 505 | version = "0.9.3" 506 | source = "registry+https://github.com/rust-lang/crates.io-index" 507 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 508 | dependencies = [ 509 | "core-foundation-sys", 510 | "libc", 511 | ] 512 | 513 | [[package]] 514 | name = "core-foundation-sys" 515 | version = "0.8.3" 516 | source = "registry+https://github.com/rust-lang/crates.io-index" 517 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 518 | 519 | [[package]] 520 | name = "cpufeatures" 521 | version = "0.2.2" 522 | source = "registry+https://github.com/rust-lang/crates.io-index" 523 | checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 524 | dependencies = [ 525 | "libc", 526 | ] 527 | 528 | [[package]] 529 | name = "crc32fast" 530 | version = "1.3.2" 531 | source = "registry+https://github.com/rust-lang/crates.io-index" 532 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 533 | dependencies = [ 534 | "cfg-if", 535 | ] 536 | 537 | [[package]] 538 | name = "crossbeam-channel" 539 | version = "0.5.4" 540 | source = "registry+https://github.com/rust-lang/crates.io-index" 541 | checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53" 542 | dependencies = [ 543 | "cfg-if", 544 | "crossbeam-utils", 545 | ] 546 | 547 | [[package]] 548 | name = "crossbeam-deque" 549 | version = "0.8.1" 550 | source = "registry+https://github.com/rust-lang/crates.io-index" 551 | checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 552 | dependencies = [ 553 | "cfg-if", 554 | "crossbeam-epoch", 555 | "crossbeam-utils", 556 | ] 557 | 558 | [[package]] 559 | name = "crossbeam-epoch" 560 | version = "0.9.8" 561 | source = "registry+https://github.com/rust-lang/crates.io-index" 562 | checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c" 563 | dependencies = [ 564 | "autocfg", 565 | "cfg-if", 566 | "crossbeam-utils", 567 | "lazy_static", 568 | "memoffset", 569 | "scopeguard", 570 | ] 571 | 572 | [[package]] 573 | name = "crossbeam-utils" 574 | version = "0.8.8" 575 | source = "registry+https://github.com/rust-lang/crates.io-index" 576 | checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38" 577 | dependencies = [ 578 | "cfg-if", 579 | "lazy_static", 580 | ] 581 | 582 | [[package]] 583 | name = "crunchy" 584 | version = "0.2.2" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 587 | 588 | [[package]] 589 | name = "crypto-common" 590 | version = "0.1.3" 591 | source = "registry+https://github.com/rust-lang/crates.io-index" 592 | checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 593 | dependencies = [ 594 | "generic-array", 595 | "typenum", 596 | ] 597 | 598 | [[package]] 599 | name = "crypto-mac" 600 | version = "0.8.0" 601 | source = "registry+https://github.com/rust-lang/crates.io-index" 602 | checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 603 | dependencies = [ 604 | "generic-array", 605 | "subtle", 606 | ] 607 | 608 | [[package]] 609 | name = "ctr" 610 | version = "0.8.0" 611 | source = "registry+https://github.com/rust-lang/crates.io-index" 612 | checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 613 | dependencies = [ 614 | "cipher 0.3.0", 615 | ] 616 | 617 | [[package]] 618 | name = "curve25519-dalek" 619 | version = "3.2.1" 620 | source = "registry+https://github.com/rust-lang/crates.io-index" 621 | checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0" 622 | dependencies = [ 623 | "byteorder", 624 | "digest 0.9.0", 625 | "rand_core 0.5.1", 626 | "serde", 627 | "subtle", 628 | "zeroize", 629 | ] 630 | 631 | [[package]] 632 | name = "dashmap" 633 | version = "4.0.2" 634 | source = "registry+https://github.com/rust-lang/crates.io-index" 635 | checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" 636 | dependencies = [ 637 | "cfg-if", 638 | "num_cpus", 639 | "rayon", 640 | ] 641 | 642 | [[package]] 643 | name = "der" 644 | version = "0.5.1" 645 | source = "registry+https://github.com/rust-lang/crates.io-index" 646 | checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" 647 | dependencies = [ 648 | "const-oid", 649 | ] 650 | 651 | [[package]] 652 | name = "derivation-path" 653 | version = "0.2.0" 654 | source = "registry+https://github.com/rust-lang/crates.io-index" 655 | checksum = "6e5c37193a1db1d8ed868c03ec7b152175f26160a5b740e5e484143877e0adf0" 656 | 657 | [[package]] 658 | name = "dialoguer" 659 | version = "0.10.1" 660 | source = "registry+https://github.com/rust-lang/crates.io-index" 661 | checksum = "d8c8ae48e400addc32a8710c8d62d55cb84249a7d58ac4cd959daecfbaddc545" 662 | dependencies = [ 663 | "console", 664 | "tempfile", 665 | "zeroize", 666 | ] 667 | 668 | [[package]] 669 | name = "digest" 670 | version = "0.9.0" 671 | source = "registry+https://github.com/rust-lang/crates.io-index" 672 | checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 673 | dependencies = [ 674 | "generic-array", 675 | ] 676 | 677 | [[package]] 678 | name = "digest" 679 | version = "0.10.3" 680 | source = "registry+https://github.com/rust-lang/crates.io-index" 681 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 682 | dependencies = [ 683 | "block-buffer 0.10.2", 684 | "crypto-common", 685 | "subtle", 686 | ] 687 | 688 | [[package]] 689 | name = "dir-diff" 690 | version = "0.3.2" 691 | source = "registry+https://github.com/rust-lang/crates.io-index" 692 | checksum = "2860407d7d7e2e004bb2128510ad9e8d669e76fa005ccf567977b5d71b8b4a0b" 693 | dependencies = [ 694 | "walkdir", 695 | ] 696 | 697 | [[package]] 698 | name = "dirs-next" 699 | version = "2.0.0" 700 | source = "registry+https://github.com/rust-lang/crates.io-index" 701 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 702 | dependencies = [ 703 | "cfg-if", 704 | "dirs-sys-next", 705 | ] 706 | 707 | [[package]] 708 | name = "dirs-sys-next" 709 | version = "0.1.2" 710 | source = "registry+https://github.com/rust-lang/crates.io-index" 711 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 712 | dependencies = [ 713 | "libc", 714 | "redox_users", 715 | "winapi", 716 | ] 717 | 718 | [[package]] 719 | name = "dlopen" 720 | version = "0.1.8" 721 | source = "registry+https://github.com/rust-lang/crates.io-index" 722 | checksum = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937" 723 | dependencies = [ 724 | "dlopen_derive", 725 | "lazy_static", 726 | "libc", 727 | "winapi", 728 | ] 729 | 730 | [[package]] 731 | name = "dlopen_derive" 732 | version = "0.1.4" 733 | source = "registry+https://github.com/rust-lang/crates.io-index" 734 | checksum = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581" 735 | dependencies = [ 736 | "libc", 737 | "quote 0.6.13", 738 | "syn 0.15.44", 739 | ] 740 | 741 | [[package]] 742 | name = "ed25519" 743 | version = "1.5.2" 744 | source = "registry+https://github.com/rust-lang/crates.io-index" 745 | checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369" 746 | dependencies = [ 747 | "signature", 748 | ] 749 | 750 | [[package]] 751 | name = "ed25519-dalek" 752 | version = "1.0.1" 753 | source = "registry+https://github.com/rust-lang/crates.io-index" 754 | checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" 755 | dependencies = [ 756 | "curve25519-dalek", 757 | "ed25519", 758 | "rand 0.7.3", 759 | "serde", 760 | "sha2 0.9.9", 761 | "zeroize", 762 | ] 763 | 764 | [[package]] 765 | name = "ed25519-dalek-bip32" 766 | version = "0.2.0" 767 | source = "registry+https://github.com/rust-lang/crates.io-index" 768 | checksum = "9d2be62a4061b872c8c0873ee4fc6f101ce7b889d039f019c5fa2af471a59908" 769 | dependencies = [ 770 | "derivation-path", 771 | "ed25519-dalek", 772 | "hmac 0.12.1", 773 | "sha2 0.10.2", 774 | ] 775 | 776 | [[package]] 777 | name = "educe" 778 | version = "0.4.19" 779 | source = "registry+https://github.com/rust-lang/crates.io-index" 780 | checksum = "c07b7cc9cd8c08d10db74fca3b20949b9b6199725c04a0cce6d543496098fcac" 781 | dependencies = [ 782 | "enum-ordinalize", 783 | "proc-macro2 1.0.38", 784 | "quote 1.0.18", 785 | "syn 1.0.94", 786 | ] 787 | 788 | [[package]] 789 | name = "either" 790 | version = "1.6.1" 791 | source = "registry+https://github.com/rust-lang/crates.io-index" 792 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 793 | 794 | [[package]] 795 | name = "encode_unicode" 796 | version = "0.3.6" 797 | source = "registry+https://github.com/rust-lang/crates.io-index" 798 | checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 799 | 800 | [[package]] 801 | name = "encoding_rs" 802 | version = "0.8.31" 803 | source = "registry+https://github.com/rust-lang/crates.io-index" 804 | checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 805 | dependencies = [ 806 | "cfg-if", 807 | ] 808 | 809 | [[package]] 810 | name = "enum-iterator" 811 | version = "0.7.0" 812 | source = "registry+https://github.com/rust-lang/crates.io-index" 813 | checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6" 814 | dependencies = [ 815 | "enum-iterator-derive", 816 | ] 817 | 818 | [[package]] 819 | name = "enum-iterator-derive" 820 | version = "0.7.0" 821 | source = "registry+https://github.com/rust-lang/crates.io-index" 822 | checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159" 823 | dependencies = [ 824 | "proc-macro2 1.0.38", 825 | "quote 1.0.18", 826 | "syn 1.0.94", 827 | ] 828 | 829 | [[package]] 830 | name = "enum-ordinalize" 831 | version = "3.1.11" 832 | source = "registry+https://github.com/rust-lang/crates.io-index" 833 | checksum = "2170fc0efee383079a8bdd05d6ea2a184d2a0f07a1c1dcabdb2fd5e9f24bc36c" 834 | dependencies = [ 835 | "num-bigint", 836 | "num-traits", 837 | "proc-macro2 1.0.38", 838 | "quote 1.0.18", 839 | "rustc_version", 840 | "syn 1.0.94", 841 | ] 842 | 843 | [[package]] 844 | name = "env_logger" 845 | version = "0.9.0" 846 | source = "registry+https://github.com/rust-lang/crates.io-index" 847 | checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 848 | dependencies = [ 849 | "atty", 850 | "humantime", 851 | "log", 852 | "regex", 853 | "termcolor", 854 | ] 855 | 856 | [[package]] 857 | name = "errno" 858 | version = "0.2.8" 859 | source = "registry+https://github.com/rust-lang/crates.io-index" 860 | checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 861 | dependencies = [ 862 | "errno-dragonfly", 863 | "libc", 864 | "winapi", 865 | ] 866 | 867 | [[package]] 868 | name = "errno-dragonfly" 869 | version = "0.1.2" 870 | source = "registry+https://github.com/rust-lang/crates.io-index" 871 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 872 | dependencies = [ 873 | "cc", 874 | "libc", 875 | ] 876 | 877 | [[package]] 878 | name = "event-listener" 879 | version = "2.5.2" 880 | source = "registry+https://github.com/rust-lang/crates.io-index" 881 | checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71" 882 | 883 | [[package]] 884 | name = "fastrand" 885 | version = "1.7.0" 886 | source = "registry+https://github.com/rust-lang/crates.io-index" 887 | checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" 888 | dependencies = [ 889 | "instant", 890 | ] 891 | 892 | [[package]] 893 | name = "feature-probe" 894 | version = "0.1.1" 895 | source = "registry+https://github.com/rust-lang/crates.io-index" 896 | checksum = "835a3dc7d1ec9e75e2b5fb4ba75396837112d2060b03f7d43bc1897c7f7211da" 897 | 898 | [[package]] 899 | name = "filetime" 900 | version = "0.2.16" 901 | source = "registry+https://github.com/rust-lang/crates.io-index" 902 | checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c" 903 | dependencies = [ 904 | "cfg-if", 905 | "libc", 906 | "redox_syscall", 907 | "winapi", 908 | ] 909 | 910 | [[package]] 911 | name = "flate2" 912 | version = "1.0.23" 913 | source = "registry+https://github.com/rust-lang/crates.io-index" 914 | checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af" 915 | dependencies = [ 916 | "cfg-if", 917 | "crc32fast", 918 | "libc", 919 | "miniz_oxide", 920 | ] 921 | 922 | [[package]] 923 | name = "fnv" 924 | version = "1.0.7" 925 | source = "registry+https://github.com/rust-lang/crates.io-index" 926 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 927 | 928 | [[package]] 929 | name = "form_urlencoded" 930 | version = "1.0.1" 931 | source = "registry+https://github.com/rust-lang/crates.io-index" 932 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 933 | dependencies = [ 934 | "matches", 935 | "percent-encoding", 936 | ] 937 | 938 | [[package]] 939 | name = "futures" 940 | version = "0.3.21" 941 | source = "registry+https://github.com/rust-lang/crates.io-index" 942 | checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 943 | dependencies = [ 944 | "futures-channel", 945 | "futures-core", 946 | "futures-executor", 947 | "futures-io", 948 | "futures-sink", 949 | "futures-task", 950 | "futures-util", 951 | ] 952 | 953 | [[package]] 954 | name = "futures-channel" 955 | version = "0.3.21" 956 | source = "registry+https://github.com/rust-lang/crates.io-index" 957 | checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 958 | dependencies = [ 959 | "futures-core", 960 | "futures-sink", 961 | ] 962 | 963 | [[package]] 964 | name = "futures-core" 965 | version = "0.3.21" 966 | source = "registry+https://github.com/rust-lang/crates.io-index" 967 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 968 | 969 | [[package]] 970 | name = "futures-executor" 971 | version = "0.3.21" 972 | source = "registry+https://github.com/rust-lang/crates.io-index" 973 | checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 974 | dependencies = [ 975 | "futures-core", 976 | "futures-task", 977 | "futures-util", 978 | ] 979 | 980 | [[package]] 981 | name = "futures-io" 982 | version = "0.3.21" 983 | source = "registry+https://github.com/rust-lang/crates.io-index" 984 | checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 985 | 986 | [[package]] 987 | name = "futures-macro" 988 | version = "0.3.21" 989 | source = "registry+https://github.com/rust-lang/crates.io-index" 990 | checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 991 | dependencies = [ 992 | "proc-macro2 1.0.38", 993 | "quote 1.0.18", 994 | "syn 1.0.94", 995 | ] 996 | 997 | [[package]] 998 | name = "futures-sink" 999 | version = "0.3.21" 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" 1001 | checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 1002 | 1003 | [[package]] 1004 | name = "futures-task" 1005 | version = "0.3.21" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 1008 | 1009 | [[package]] 1010 | name = "futures-util" 1011 | version = "0.3.21" 1012 | source = "registry+https://github.com/rust-lang/crates.io-index" 1013 | checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 1014 | dependencies = [ 1015 | "futures-channel", 1016 | "futures-core", 1017 | "futures-io", 1018 | "futures-macro", 1019 | "futures-sink", 1020 | "futures-task", 1021 | "memchr", 1022 | "pin-project-lite", 1023 | "pin-utils", 1024 | "slab", 1025 | ] 1026 | 1027 | [[package]] 1028 | name = "fxhash" 1029 | version = "0.2.1" 1030 | source = "registry+https://github.com/rust-lang/crates.io-index" 1031 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1032 | dependencies = [ 1033 | "byteorder", 1034 | ] 1035 | 1036 | [[package]] 1037 | name = "generic-array" 1038 | version = "0.14.5" 1039 | source = "registry+https://github.com/rust-lang/crates.io-index" 1040 | checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 1041 | dependencies = [ 1042 | "serde", 1043 | "typenum", 1044 | "version_check", 1045 | ] 1046 | 1047 | [[package]] 1048 | name = "gethostname" 1049 | version = "0.2.3" 1050 | source = "registry+https://github.com/rust-lang/crates.io-index" 1051 | checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" 1052 | dependencies = [ 1053 | "libc", 1054 | "winapi", 1055 | ] 1056 | 1057 | [[package]] 1058 | name = "getrandom" 1059 | version = "0.1.16" 1060 | source = "registry+https://github.com/rust-lang/crates.io-index" 1061 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1062 | dependencies = [ 1063 | "cfg-if", 1064 | "js-sys", 1065 | "libc", 1066 | "wasi 0.9.0+wasi-snapshot-preview1", 1067 | "wasm-bindgen", 1068 | ] 1069 | 1070 | [[package]] 1071 | name = "getrandom" 1072 | version = "0.2.6" 1073 | source = "registry+https://github.com/rust-lang/crates.io-index" 1074 | checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad" 1075 | dependencies = [ 1076 | "cfg-if", 1077 | "libc", 1078 | "wasi 0.10.2+wasi-snapshot-preview1", 1079 | ] 1080 | 1081 | [[package]] 1082 | name = "goblin" 1083 | version = "0.4.3" 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" 1085 | checksum = "32401e89c6446dcd28185931a01b1093726d0356820ac744023e6850689bf926" 1086 | dependencies = [ 1087 | "log", 1088 | "plain", 1089 | "scroll", 1090 | ] 1091 | 1092 | [[package]] 1093 | name = "h2" 1094 | version = "0.3.13" 1095 | source = "registry+https://github.com/rust-lang/crates.io-index" 1096 | checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57" 1097 | dependencies = [ 1098 | "bytes", 1099 | "fnv", 1100 | "futures-core", 1101 | "futures-sink", 1102 | "futures-util", 1103 | "http", 1104 | "indexmap", 1105 | "slab", 1106 | "tokio", 1107 | "tokio-util 0.7.2", 1108 | "tracing", 1109 | ] 1110 | 1111 | [[package]] 1112 | name = "hash32" 1113 | version = "0.1.1" 1114 | source = "registry+https://github.com/rust-lang/crates.io-index" 1115 | checksum = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc" 1116 | dependencies = [ 1117 | "byteorder", 1118 | ] 1119 | 1120 | [[package]] 1121 | name = "hashbrown" 1122 | version = "0.11.2" 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" 1124 | checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 1125 | dependencies = [ 1126 | "ahash", 1127 | ] 1128 | 1129 | [[package]] 1130 | name = "hermit-abi" 1131 | version = "0.1.19" 1132 | source = "registry+https://github.com/rust-lang/crates.io-index" 1133 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1134 | dependencies = [ 1135 | "libc", 1136 | ] 1137 | 1138 | [[package]] 1139 | name = "histogram" 1140 | version = "0.6.9" 1141 | source = "registry+https://github.com/rust-lang/crates.io-index" 1142 | checksum = "12cb882ccb290b8646e554b157ab0b71e64e8d5bef775cd66b6531e52d302669" 1143 | 1144 | [[package]] 1145 | name = "hmac" 1146 | version = "0.8.1" 1147 | source = "registry+https://github.com/rust-lang/crates.io-index" 1148 | checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" 1149 | dependencies = [ 1150 | "crypto-mac", 1151 | "digest 0.9.0", 1152 | ] 1153 | 1154 | [[package]] 1155 | name = "hmac" 1156 | version = "0.12.1" 1157 | source = "registry+https://github.com/rust-lang/crates.io-index" 1158 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1159 | dependencies = [ 1160 | "digest 0.10.3", 1161 | ] 1162 | 1163 | [[package]] 1164 | name = "hmac-drbg" 1165 | version = "0.3.0" 1166 | source = "registry+https://github.com/rust-lang/crates.io-index" 1167 | checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" 1168 | dependencies = [ 1169 | "digest 0.9.0", 1170 | "generic-array", 1171 | "hmac 0.8.1", 1172 | ] 1173 | 1174 | [[package]] 1175 | name = "http" 1176 | version = "0.2.7" 1177 | source = "registry+https://github.com/rust-lang/crates.io-index" 1178 | checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb" 1179 | dependencies = [ 1180 | "bytes", 1181 | "fnv", 1182 | "itoa", 1183 | ] 1184 | 1185 | [[package]] 1186 | name = "http-body" 1187 | version = "0.4.4" 1188 | source = "registry+https://github.com/rust-lang/crates.io-index" 1189 | checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" 1190 | dependencies = [ 1191 | "bytes", 1192 | "http", 1193 | "pin-project-lite", 1194 | ] 1195 | 1196 | [[package]] 1197 | name = "httparse" 1198 | version = "1.7.1" 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" 1200 | checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 1201 | 1202 | [[package]] 1203 | name = "httpdate" 1204 | version = "1.0.2" 1205 | source = "registry+https://github.com/rust-lang/crates.io-index" 1206 | checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1207 | 1208 | [[package]] 1209 | name = "humantime" 1210 | version = "2.1.0" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1213 | 1214 | [[package]] 1215 | name = "hyper" 1216 | version = "0.14.18" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2" 1219 | dependencies = [ 1220 | "bytes", 1221 | "futures-channel", 1222 | "futures-core", 1223 | "futures-util", 1224 | "h2", 1225 | "http", 1226 | "http-body", 1227 | "httparse", 1228 | "httpdate", 1229 | "itoa", 1230 | "pin-project-lite", 1231 | "socket2", 1232 | "tokio", 1233 | "tower-service", 1234 | "tracing", 1235 | "want", 1236 | ] 1237 | 1238 | [[package]] 1239 | name = "hyper-rustls" 1240 | version = "0.23.0" 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" 1242 | checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac" 1243 | dependencies = [ 1244 | "http", 1245 | "hyper", 1246 | "rustls", 1247 | "tokio", 1248 | "tokio-rustls", 1249 | ] 1250 | 1251 | [[package]] 1252 | name = "idna" 1253 | version = "0.2.3" 1254 | source = "registry+https://github.com/rust-lang/crates.io-index" 1255 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1256 | dependencies = [ 1257 | "matches", 1258 | "unicode-bidi", 1259 | "unicode-normalization", 1260 | ] 1261 | 1262 | [[package]] 1263 | name = "im" 1264 | version = "15.1.0" 1265 | source = "registry+https://github.com/rust-lang/crates.io-index" 1266 | checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9" 1267 | dependencies = [ 1268 | "bitmaps", 1269 | "rand_core 0.6.3", 1270 | "rand_xoshiro", 1271 | "rayon", 1272 | "serde", 1273 | "sized-chunks", 1274 | "typenum", 1275 | "version_check", 1276 | ] 1277 | 1278 | [[package]] 1279 | name = "index_list" 1280 | version = "0.2.7" 1281 | source = "registry+https://github.com/rust-lang/crates.io-index" 1282 | checksum = "5a9d968042a4902e08810946fc7cd5851eb75e80301342305af755ca06cb82ce" 1283 | 1284 | [[package]] 1285 | name = "indexmap" 1286 | version = "1.8.1" 1287 | source = "registry+https://github.com/rust-lang/crates.io-index" 1288 | checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee" 1289 | dependencies = [ 1290 | "autocfg", 1291 | "hashbrown", 1292 | ] 1293 | 1294 | [[package]] 1295 | name = "indicatif" 1296 | version = "0.16.2" 1297 | source = "registry+https://github.com/rust-lang/crates.io-index" 1298 | checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" 1299 | dependencies = [ 1300 | "console", 1301 | "lazy_static", 1302 | "number_prefix", 1303 | "regex", 1304 | ] 1305 | 1306 | [[package]] 1307 | name = "inout" 1308 | version = "0.1.3" 1309 | source = "registry+https://github.com/rust-lang/crates.io-index" 1310 | checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1311 | dependencies = [ 1312 | "generic-array", 1313 | ] 1314 | 1315 | [[package]] 1316 | name = "instant" 1317 | version = "0.1.12" 1318 | source = "registry+https://github.com/rust-lang/crates.io-index" 1319 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1320 | dependencies = [ 1321 | "cfg-if", 1322 | ] 1323 | 1324 | [[package]] 1325 | name = "ipnet" 1326 | version = "2.5.0" 1327 | source = "registry+https://github.com/rust-lang/crates.io-index" 1328 | checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 1329 | 1330 | [[package]] 1331 | name = "itertools" 1332 | version = "0.10.3" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" 1335 | dependencies = [ 1336 | "either", 1337 | ] 1338 | 1339 | [[package]] 1340 | name = "itoa" 1341 | version = "1.0.2" 1342 | source = "registry+https://github.com/rust-lang/crates.io-index" 1343 | checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 1344 | 1345 | [[package]] 1346 | name = "jobserver" 1347 | version = "0.1.24" 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" 1349 | checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" 1350 | dependencies = [ 1351 | "libc", 1352 | ] 1353 | 1354 | [[package]] 1355 | name = "js-sys" 1356 | version = "0.3.57" 1357 | source = "registry+https://github.com/rust-lang/crates.io-index" 1358 | checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397" 1359 | dependencies = [ 1360 | "wasm-bindgen", 1361 | ] 1362 | 1363 | [[package]] 1364 | name = "jsonrpc-core" 1365 | version = "18.0.0" 1366 | source = "registry+https://github.com/rust-lang/crates.io-index" 1367 | checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" 1368 | dependencies = [ 1369 | "futures", 1370 | "futures-executor", 1371 | "futures-util", 1372 | "log", 1373 | "serde", 1374 | "serde_derive", 1375 | "serde_json", 1376 | ] 1377 | 1378 | [[package]] 1379 | name = "keccak" 1380 | version = "0.1.0" 1381 | source = "registry+https://github.com/rust-lang/crates.io-index" 1382 | checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" 1383 | 1384 | [[package]] 1385 | name = "lazy_static" 1386 | version = "1.4.0" 1387 | source = "registry+https://github.com/rust-lang/crates.io-index" 1388 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1389 | 1390 | [[package]] 1391 | name = "libc" 1392 | version = "0.2.125" 1393 | source = "registry+https://github.com/rust-lang/crates.io-index" 1394 | checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b" 1395 | 1396 | [[package]] 1397 | name = "libloading" 1398 | version = "0.7.3" 1399 | source = "registry+https://github.com/rust-lang/crates.io-index" 1400 | checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" 1401 | dependencies = [ 1402 | "cfg-if", 1403 | "winapi", 1404 | ] 1405 | 1406 | [[package]] 1407 | name = "libsecp256k1" 1408 | version = "0.6.0" 1409 | source = "registry+https://github.com/rust-lang/crates.io-index" 1410 | checksum = "c9d220bc1feda2ac231cb78c3d26f27676b8cf82c96971f7aeef3d0cf2797c73" 1411 | dependencies = [ 1412 | "arrayref", 1413 | "base64 0.12.3", 1414 | "digest 0.9.0", 1415 | "hmac-drbg", 1416 | "libsecp256k1-core", 1417 | "libsecp256k1-gen-ecmult", 1418 | "libsecp256k1-gen-genmult", 1419 | "rand 0.7.3", 1420 | "serde", 1421 | "sha2 0.9.9", 1422 | "typenum", 1423 | ] 1424 | 1425 | [[package]] 1426 | name = "libsecp256k1-core" 1427 | version = "0.2.2" 1428 | source = "registry+https://github.com/rust-lang/crates.io-index" 1429 | checksum = "d0f6ab710cec28cef759c5f18671a27dae2a5f952cdaaee1d8e2908cb2478a80" 1430 | dependencies = [ 1431 | "crunchy", 1432 | "digest 0.9.0", 1433 | "subtle", 1434 | ] 1435 | 1436 | [[package]] 1437 | name = "libsecp256k1-gen-ecmult" 1438 | version = "0.2.1" 1439 | source = "registry+https://github.com/rust-lang/crates.io-index" 1440 | checksum = "ccab96b584d38fac86a83f07e659f0deafd0253dc096dab5a36d53efe653c5c3" 1441 | dependencies = [ 1442 | "libsecp256k1-core", 1443 | ] 1444 | 1445 | [[package]] 1446 | name = "libsecp256k1-gen-genmult" 1447 | version = "0.2.1" 1448 | source = "registry+https://github.com/rust-lang/crates.io-index" 1449 | checksum = "67abfe149395e3aa1c48a2beb32b068e2334402df8181f818d3aee2b304c4f5d" 1450 | dependencies = [ 1451 | "libsecp256k1-core", 1452 | ] 1453 | 1454 | [[package]] 1455 | name = "linked-hash-map" 1456 | version = "0.5.4" 1457 | source = "registry+https://github.com/rust-lang/crates.io-index" 1458 | checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" 1459 | 1460 | [[package]] 1461 | name = "lock_api" 1462 | version = "0.4.7" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1465 | dependencies = [ 1466 | "autocfg", 1467 | "scopeguard", 1468 | ] 1469 | 1470 | [[package]] 1471 | name = "log" 1472 | version = "0.4.17" 1473 | source = "registry+https://github.com/rust-lang/crates.io-index" 1474 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1475 | dependencies = [ 1476 | "cfg-if", 1477 | ] 1478 | 1479 | [[package]] 1480 | name = "lru" 1481 | version = "0.7.5" 1482 | source = "registry+https://github.com/rust-lang/crates.io-index" 1483 | checksum = "32613e41de4c47ab04970c348ca7ae7382cf116625755af070b008a15516a889" 1484 | dependencies = [ 1485 | "hashbrown", 1486 | ] 1487 | 1488 | [[package]] 1489 | name = "matches" 1490 | version = "0.1.9" 1491 | source = "registry+https://github.com/rust-lang/crates.io-index" 1492 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1493 | 1494 | [[package]] 1495 | name = "memchr" 1496 | version = "2.5.0" 1497 | source = "registry+https://github.com/rust-lang/crates.io-index" 1498 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1499 | 1500 | [[package]] 1501 | name = "memmap2" 1502 | version = "0.5.3" 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" 1504 | checksum = "057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f" 1505 | dependencies = [ 1506 | "libc", 1507 | ] 1508 | 1509 | [[package]] 1510 | name = "memoffset" 1511 | version = "0.6.5" 1512 | source = "registry+https://github.com/rust-lang/crates.io-index" 1513 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1514 | dependencies = [ 1515 | "autocfg", 1516 | ] 1517 | 1518 | [[package]] 1519 | name = "merlin" 1520 | version = "3.0.0" 1521 | source = "registry+https://github.com/rust-lang/crates.io-index" 1522 | checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d" 1523 | dependencies = [ 1524 | "byteorder", 1525 | "keccak", 1526 | "rand_core 0.6.3", 1527 | "zeroize", 1528 | ] 1529 | 1530 | [[package]] 1531 | name = "mime" 1532 | version = "0.3.16" 1533 | source = "registry+https://github.com/rust-lang/crates.io-index" 1534 | checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1535 | 1536 | [[package]] 1537 | name = "miniz_oxide" 1538 | version = "0.5.1" 1539 | source = "registry+https://github.com/rust-lang/crates.io-index" 1540 | checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082" 1541 | dependencies = [ 1542 | "adler", 1543 | ] 1544 | 1545 | [[package]] 1546 | name = "mio" 1547 | version = "0.7.14" 1548 | source = "registry+https://github.com/rust-lang/crates.io-index" 1549 | checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 1550 | dependencies = [ 1551 | "libc", 1552 | "log", 1553 | "miow", 1554 | "ntapi", 1555 | "winapi", 1556 | ] 1557 | 1558 | [[package]] 1559 | name = "miow" 1560 | version = "0.3.7" 1561 | source = "registry+https://github.com/rust-lang/crates.io-index" 1562 | checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1563 | dependencies = [ 1564 | "winapi", 1565 | ] 1566 | 1567 | [[package]] 1568 | name = "modular-bitfield" 1569 | version = "0.11.2" 1570 | source = "registry+https://github.com/rust-lang/crates.io-index" 1571 | checksum = "a53d79ba8304ac1c4f9eb3b9d281f21f7be9d4626f72ce7df4ad8fbde4f38a74" 1572 | dependencies = [ 1573 | "modular-bitfield-impl", 1574 | "static_assertions", 1575 | ] 1576 | 1577 | [[package]] 1578 | name = "modular-bitfield-impl" 1579 | version = "0.11.2" 1580 | source = "registry+https://github.com/rust-lang/crates.io-index" 1581 | checksum = "5a7d5f7076603ebc68de2dc6a650ec331a062a13abaa346975be747bbfa4b789" 1582 | dependencies = [ 1583 | "proc-macro2 1.0.38", 1584 | "quote 1.0.18", 1585 | "syn 1.0.94", 1586 | ] 1587 | 1588 | [[package]] 1589 | name = "nix" 1590 | version = "0.23.1" 1591 | source = "registry+https://github.com/rust-lang/crates.io-index" 1592 | checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" 1593 | dependencies = [ 1594 | "bitflags", 1595 | "cc", 1596 | "cfg-if", 1597 | "libc", 1598 | "memoffset", 1599 | ] 1600 | 1601 | [[package]] 1602 | name = "ntapi" 1603 | version = "0.3.7" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 1606 | dependencies = [ 1607 | "winapi", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "num-bigint" 1612 | version = "0.4.3" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1615 | dependencies = [ 1616 | "autocfg", 1617 | "num-integer", 1618 | "num-traits", 1619 | ] 1620 | 1621 | [[package]] 1622 | name = "num-derive" 1623 | version = "0.3.3" 1624 | source = "registry+https://github.com/rust-lang/crates.io-index" 1625 | checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 1626 | dependencies = [ 1627 | "proc-macro2 1.0.38", 1628 | "quote 1.0.18", 1629 | "syn 1.0.94", 1630 | ] 1631 | 1632 | [[package]] 1633 | name = "num-integer" 1634 | version = "0.1.45" 1635 | source = "registry+https://github.com/rust-lang/crates.io-index" 1636 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1637 | dependencies = [ 1638 | "autocfg", 1639 | "num-traits", 1640 | ] 1641 | 1642 | [[package]] 1643 | name = "num-traits" 1644 | version = "0.2.15" 1645 | source = "registry+https://github.com/rust-lang/crates.io-index" 1646 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1647 | dependencies = [ 1648 | "autocfg", 1649 | ] 1650 | 1651 | [[package]] 1652 | name = "num_cpus" 1653 | version = "1.13.1" 1654 | source = "registry+https://github.com/rust-lang/crates.io-index" 1655 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1656 | dependencies = [ 1657 | "hermit-abi", 1658 | "libc", 1659 | ] 1660 | 1661 | [[package]] 1662 | name = "num_enum" 1663 | version = "0.5.7" 1664 | source = "registry+https://github.com/rust-lang/crates.io-index" 1665 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1666 | dependencies = [ 1667 | "num_enum_derive", 1668 | ] 1669 | 1670 | [[package]] 1671 | name = "num_enum_derive" 1672 | version = "0.5.7" 1673 | source = "registry+https://github.com/rust-lang/crates.io-index" 1674 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1675 | dependencies = [ 1676 | "proc-macro-crate 1.1.3", 1677 | "proc-macro2 1.0.38", 1678 | "quote 1.0.18", 1679 | "syn 1.0.94", 1680 | ] 1681 | 1682 | [[package]] 1683 | name = "num_threads" 1684 | version = "0.1.6" 1685 | source = "registry+https://github.com/rust-lang/crates.io-index" 1686 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1687 | dependencies = [ 1688 | "libc", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "number_prefix" 1693 | version = "0.4.0" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1696 | 1697 | [[package]] 1698 | name = "once_cell" 1699 | version = "1.10.0" 1700 | source = "registry+https://github.com/rust-lang/crates.io-index" 1701 | checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9" 1702 | 1703 | [[package]] 1704 | name = "opaque-debug" 1705 | version = "0.3.0" 1706 | source = "registry+https://github.com/rust-lang/crates.io-index" 1707 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1708 | 1709 | [[package]] 1710 | name = "openssl-probe" 1711 | version = "0.1.5" 1712 | source = "registry+https://github.com/rust-lang/crates.io-index" 1713 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1714 | 1715 | [[package]] 1716 | name = "opentelemetry" 1717 | version = "0.16.0" 1718 | source = "registry+https://github.com/rust-lang/crates.io-index" 1719 | checksum = "e1cf9b1c4e9a6c4de793c632496fa490bdc0e1eea73f0c91394f7b6990935d22" 1720 | dependencies = [ 1721 | "async-trait", 1722 | "crossbeam-channel", 1723 | "futures", 1724 | "js-sys", 1725 | "lazy_static", 1726 | "percent-encoding", 1727 | "pin-project", 1728 | "rand 0.8.5", 1729 | "thiserror", 1730 | ] 1731 | 1732 | [[package]] 1733 | name = "ouroboros" 1734 | version = "0.14.2" 1735 | source = "registry+https://github.com/rust-lang/crates.io-index" 1736 | checksum = "71643f290d126e18ac2598876d01e1d57aed164afc78fdb6e2a0c6589a1f6662" 1737 | dependencies = [ 1738 | "aliasable", 1739 | "ouroboros_macro", 1740 | "stable_deref_trait", 1741 | ] 1742 | 1743 | [[package]] 1744 | name = "ouroboros_macro" 1745 | version = "0.14.2" 1746 | source = "registry+https://github.com/rust-lang/crates.io-index" 1747 | checksum = "ed9a247206016d424fe8497bc611e510887af5c261fbbf977877c4bb55ca4d82" 1748 | dependencies = [ 1749 | "Inflector", 1750 | "proc-macro-error", 1751 | "proc-macro2 1.0.38", 1752 | "quote 1.0.18", 1753 | "syn 1.0.94", 1754 | ] 1755 | 1756 | [[package]] 1757 | name = "parking_lot" 1758 | version = "0.11.2" 1759 | source = "registry+https://github.com/rust-lang/crates.io-index" 1760 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1761 | dependencies = [ 1762 | "instant", 1763 | "lock_api", 1764 | "parking_lot_core 0.8.5", 1765 | ] 1766 | 1767 | [[package]] 1768 | name = "parking_lot" 1769 | version = "0.12.0" 1770 | source = "registry+https://github.com/rust-lang/crates.io-index" 1771 | checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" 1772 | dependencies = [ 1773 | "lock_api", 1774 | "parking_lot_core 0.9.3", 1775 | ] 1776 | 1777 | [[package]] 1778 | name = "parking_lot_core" 1779 | version = "0.8.5" 1780 | source = "registry+https://github.com/rust-lang/crates.io-index" 1781 | checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 1782 | dependencies = [ 1783 | "cfg-if", 1784 | "instant", 1785 | "libc", 1786 | "redox_syscall", 1787 | "smallvec", 1788 | "winapi", 1789 | ] 1790 | 1791 | [[package]] 1792 | name = "parking_lot_core" 1793 | version = "0.9.3" 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" 1795 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1796 | dependencies = [ 1797 | "cfg-if", 1798 | "libc", 1799 | "redox_syscall", 1800 | "smallvec", 1801 | "windows-sys", 1802 | ] 1803 | 1804 | [[package]] 1805 | name = "pbkdf2" 1806 | version = "0.4.0" 1807 | source = "registry+https://github.com/rust-lang/crates.io-index" 1808 | checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd" 1809 | dependencies = [ 1810 | "crypto-mac", 1811 | ] 1812 | 1813 | [[package]] 1814 | name = "pbkdf2" 1815 | version = "0.10.1" 1816 | source = "registry+https://github.com/rust-lang/crates.io-index" 1817 | checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7" 1818 | dependencies = [ 1819 | "digest 0.10.3", 1820 | ] 1821 | 1822 | [[package]] 1823 | name = "pem" 1824 | version = "1.0.2" 1825 | source = "registry+https://github.com/rust-lang/crates.io-index" 1826 | checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947" 1827 | dependencies = [ 1828 | "base64 0.13.0", 1829 | ] 1830 | 1831 | [[package]] 1832 | name = "percent-encoding" 1833 | version = "2.1.0" 1834 | source = "registry+https://github.com/rust-lang/crates.io-index" 1835 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1836 | 1837 | [[package]] 1838 | name = "pin-project" 1839 | version = "1.0.10" 1840 | source = "registry+https://github.com/rust-lang/crates.io-index" 1841 | checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" 1842 | dependencies = [ 1843 | "pin-project-internal", 1844 | ] 1845 | 1846 | [[package]] 1847 | name = "pin-project-internal" 1848 | version = "1.0.10" 1849 | source = "registry+https://github.com/rust-lang/crates.io-index" 1850 | checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" 1851 | dependencies = [ 1852 | "proc-macro2 1.0.38", 1853 | "quote 1.0.18", 1854 | "syn 1.0.94", 1855 | ] 1856 | 1857 | [[package]] 1858 | name = "pin-project-lite" 1859 | version = "0.2.9" 1860 | source = "registry+https://github.com/rust-lang/crates.io-index" 1861 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1862 | 1863 | [[package]] 1864 | name = "pin-utils" 1865 | version = "0.1.0" 1866 | source = "registry+https://github.com/rust-lang/crates.io-index" 1867 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1868 | 1869 | [[package]] 1870 | name = "pkcs8" 1871 | version = "0.8.0" 1872 | source = "registry+https://github.com/rust-lang/crates.io-index" 1873 | checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0" 1874 | dependencies = [ 1875 | "der", 1876 | "spki", 1877 | "zeroize", 1878 | ] 1879 | 1880 | [[package]] 1881 | name = "pkg-config" 1882 | version = "0.3.25" 1883 | source = "registry+https://github.com/rust-lang/crates.io-index" 1884 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1885 | 1886 | [[package]] 1887 | name = "plain" 1888 | version = "0.2.3" 1889 | source = "registry+https://github.com/rust-lang/crates.io-index" 1890 | checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 1891 | 1892 | [[package]] 1893 | name = "polyval" 1894 | version = "0.5.3" 1895 | source = "registry+https://github.com/rust-lang/crates.io-index" 1896 | checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 1897 | dependencies = [ 1898 | "cfg-if", 1899 | "cpufeatures", 1900 | "opaque-debug", 1901 | "universal-hash", 1902 | ] 1903 | 1904 | [[package]] 1905 | name = "ppv-lite86" 1906 | version = "0.2.16" 1907 | source = "registry+https://github.com/rust-lang/crates.io-index" 1908 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1909 | 1910 | [[package]] 1911 | name = "proc-macro-crate" 1912 | version = "0.1.5" 1913 | source = "registry+https://github.com/rust-lang/crates.io-index" 1914 | checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 1915 | dependencies = [ 1916 | "toml", 1917 | ] 1918 | 1919 | [[package]] 1920 | name = "proc-macro-crate" 1921 | version = "1.1.3" 1922 | source = "registry+https://github.com/rust-lang/crates.io-index" 1923 | checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" 1924 | dependencies = [ 1925 | "thiserror", 1926 | "toml", 1927 | ] 1928 | 1929 | [[package]] 1930 | name = "proc-macro-error" 1931 | version = "1.0.4" 1932 | source = "registry+https://github.com/rust-lang/crates.io-index" 1933 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1934 | dependencies = [ 1935 | "proc-macro-error-attr", 1936 | "proc-macro2 1.0.38", 1937 | "quote 1.0.18", 1938 | "syn 1.0.94", 1939 | "version_check", 1940 | ] 1941 | 1942 | [[package]] 1943 | name = "proc-macro-error-attr" 1944 | version = "1.0.4" 1945 | source = "registry+https://github.com/rust-lang/crates.io-index" 1946 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1947 | dependencies = [ 1948 | "proc-macro2 1.0.38", 1949 | "quote 1.0.18", 1950 | "version_check", 1951 | ] 1952 | 1953 | [[package]] 1954 | name = "proc-macro2" 1955 | version = "0.4.30" 1956 | source = "registry+https://github.com/rust-lang/crates.io-index" 1957 | checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 1958 | dependencies = [ 1959 | "unicode-xid 0.1.0", 1960 | ] 1961 | 1962 | [[package]] 1963 | name = "proc-macro2" 1964 | version = "1.0.38" 1965 | source = "registry+https://github.com/rust-lang/crates.io-index" 1966 | checksum = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa" 1967 | dependencies = [ 1968 | "unicode-xid 0.2.3", 1969 | ] 1970 | 1971 | [[package]] 1972 | name = "qstring" 1973 | version = "0.7.2" 1974 | source = "registry+https://github.com/rust-lang/crates.io-index" 1975 | checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e" 1976 | dependencies = [ 1977 | "percent-encoding", 1978 | ] 1979 | 1980 | [[package]] 1981 | name = "quinn" 1982 | version = "0.8.2" 1983 | source = "registry+https://github.com/rust-lang/crates.io-index" 1984 | checksum = "d147472bc9a09f13b06c044787b6683cdffa02e2865b7f0fb53d67c49ed2988e" 1985 | dependencies = [ 1986 | "bytes", 1987 | "futures-channel", 1988 | "futures-util", 1989 | "fxhash", 1990 | "quinn-proto", 1991 | "quinn-udp", 1992 | "rustls", 1993 | "thiserror", 1994 | "tokio", 1995 | "tracing", 1996 | "webpki", 1997 | ] 1998 | 1999 | [[package]] 2000 | name = "quinn-proto" 2001 | version = "0.8.2" 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" 2003 | checksum = "359c5eb33845f3ee05c229e65f87cdbc503eea394964b8f1330833d460b4ff3e" 2004 | dependencies = [ 2005 | "bytes", 2006 | "fxhash", 2007 | "rand 0.8.5", 2008 | "ring", 2009 | "rustls", 2010 | "rustls-native-certs", 2011 | "rustls-pemfile 0.2.1", 2012 | "slab", 2013 | "thiserror", 2014 | "tinyvec", 2015 | "tracing", 2016 | "webpki", 2017 | ] 2018 | 2019 | [[package]] 2020 | name = "quinn-udp" 2021 | version = "0.1.1" 2022 | source = "registry+https://github.com/rust-lang/crates.io-index" 2023 | checksum = "df185e5e5f7611fa6e628ed8f9633df10114b03bbaecab186ec55822c44ac727" 2024 | dependencies = [ 2025 | "futures-util", 2026 | "libc", 2027 | "mio", 2028 | "quinn-proto", 2029 | "socket2", 2030 | "tokio", 2031 | "tracing", 2032 | ] 2033 | 2034 | [[package]] 2035 | name = "quote" 2036 | version = "0.6.13" 2037 | source = "registry+https://github.com/rust-lang/crates.io-index" 2038 | checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 2039 | dependencies = [ 2040 | "proc-macro2 0.4.30", 2041 | ] 2042 | 2043 | [[package]] 2044 | name = "quote" 2045 | version = "1.0.18" 2046 | source = "registry+https://github.com/rust-lang/crates.io-index" 2047 | checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" 2048 | dependencies = [ 2049 | "proc-macro2 1.0.38", 2050 | ] 2051 | 2052 | [[package]] 2053 | name = "rand" 2054 | version = "0.7.3" 2055 | source = "registry+https://github.com/rust-lang/crates.io-index" 2056 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2057 | dependencies = [ 2058 | "getrandom 0.1.16", 2059 | "libc", 2060 | "rand_chacha 0.2.2", 2061 | "rand_core 0.5.1", 2062 | "rand_hc", 2063 | "rand_pcg", 2064 | ] 2065 | 2066 | [[package]] 2067 | name = "rand" 2068 | version = "0.8.5" 2069 | source = "registry+https://github.com/rust-lang/crates.io-index" 2070 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2071 | dependencies = [ 2072 | "libc", 2073 | "rand_chacha 0.3.1", 2074 | "rand_core 0.6.3", 2075 | ] 2076 | 2077 | [[package]] 2078 | name = "rand_chacha" 2079 | version = "0.2.2" 2080 | source = "registry+https://github.com/rust-lang/crates.io-index" 2081 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2082 | dependencies = [ 2083 | "ppv-lite86", 2084 | "rand_core 0.5.1", 2085 | ] 2086 | 2087 | [[package]] 2088 | name = "rand_chacha" 2089 | version = "0.3.1" 2090 | source = "registry+https://github.com/rust-lang/crates.io-index" 2091 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2092 | dependencies = [ 2093 | "ppv-lite86", 2094 | "rand_core 0.6.3", 2095 | ] 2096 | 2097 | [[package]] 2098 | name = "rand_core" 2099 | version = "0.5.1" 2100 | source = "registry+https://github.com/rust-lang/crates.io-index" 2101 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2102 | dependencies = [ 2103 | "getrandom 0.1.16", 2104 | ] 2105 | 2106 | [[package]] 2107 | name = "rand_core" 2108 | version = "0.6.3" 2109 | source = "registry+https://github.com/rust-lang/crates.io-index" 2110 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2111 | dependencies = [ 2112 | "getrandom 0.2.6", 2113 | ] 2114 | 2115 | [[package]] 2116 | name = "rand_hc" 2117 | version = "0.2.0" 2118 | source = "registry+https://github.com/rust-lang/crates.io-index" 2119 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2120 | dependencies = [ 2121 | "rand_core 0.5.1", 2122 | ] 2123 | 2124 | [[package]] 2125 | name = "rand_pcg" 2126 | version = "0.2.1" 2127 | source = "registry+https://github.com/rust-lang/crates.io-index" 2128 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2129 | dependencies = [ 2130 | "rand_core 0.5.1", 2131 | ] 2132 | 2133 | [[package]] 2134 | name = "rand_xoshiro" 2135 | version = "0.6.0" 2136 | source = "registry+https://github.com/rust-lang/crates.io-index" 2137 | checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" 2138 | dependencies = [ 2139 | "rand_core 0.6.3", 2140 | ] 2141 | 2142 | [[package]] 2143 | name = "rayon" 2144 | version = "1.5.3" 2145 | source = "registry+https://github.com/rust-lang/crates.io-index" 2146 | checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" 2147 | dependencies = [ 2148 | "autocfg", 2149 | "crossbeam-deque", 2150 | "either", 2151 | "rayon-core", 2152 | ] 2153 | 2154 | [[package]] 2155 | name = "rayon-core" 2156 | version = "1.9.3" 2157 | source = "registry+https://github.com/rust-lang/crates.io-index" 2158 | checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" 2159 | dependencies = [ 2160 | "crossbeam-channel", 2161 | "crossbeam-deque", 2162 | "crossbeam-utils", 2163 | "num_cpus", 2164 | ] 2165 | 2166 | [[package]] 2167 | name = "rcgen" 2168 | version = "0.9.2" 2169 | source = "registry+https://github.com/rust-lang/crates.io-index" 2170 | checksum = "d7fa2d386df8533b02184941c76ae2e0d0c1d053f5d43339169d80f21275fc5e" 2171 | dependencies = [ 2172 | "pem", 2173 | "ring", 2174 | "time 0.3.9", 2175 | "yasna", 2176 | ] 2177 | 2178 | [[package]] 2179 | name = "redox_syscall" 2180 | version = "0.2.13" 2181 | source = "registry+https://github.com/rust-lang/crates.io-index" 2182 | checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" 2183 | dependencies = [ 2184 | "bitflags", 2185 | ] 2186 | 2187 | [[package]] 2188 | name = "redox_users" 2189 | version = "0.4.3" 2190 | source = "registry+https://github.com/rust-lang/crates.io-index" 2191 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2192 | dependencies = [ 2193 | "getrandom 0.2.6", 2194 | "redox_syscall", 2195 | "thiserror", 2196 | ] 2197 | 2198 | [[package]] 2199 | name = "regex" 2200 | version = "1.5.5" 2201 | source = "registry+https://github.com/rust-lang/crates.io-index" 2202 | checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" 2203 | dependencies = [ 2204 | "aho-corasick", 2205 | "memchr", 2206 | "regex-syntax", 2207 | ] 2208 | 2209 | [[package]] 2210 | name = "regex-syntax" 2211 | version = "0.6.25" 2212 | source = "registry+https://github.com/rust-lang/crates.io-index" 2213 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 2214 | 2215 | [[package]] 2216 | name = "remove_dir_all" 2217 | version = "0.5.3" 2218 | source = "registry+https://github.com/rust-lang/crates.io-index" 2219 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2220 | dependencies = [ 2221 | "winapi", 2222 | ] 2223 | 2224 | [[package]] 2225 | name = "reqwest" 2226 | version = "0.11.10" 2227 | source = "registry+https://github.com/rust-lang/crates.io-index" 2228 | checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" 2229 | dependencies = [ 2230 | "base64 0.13.0", 2231 | "bytes", 2232 | "encoding_rs", 2233 | "futures-core", 2234 | "futures-util", 2235 | "h2", 2236 | "http", 2237 | "http-body", 2238 | "hyper", 2239 | "hyper-rustls", 2240 | "ipnet", 2241 | "js-sys", 2242 | "lazy_static", 2243 | "log", 2244 | "mime", 2245 | "percent-encoding", 2246 | "pin-project-lite", 2247 | "rustls", 2248 | "rustls-pemfile 0.3.0", 2249 | "serde", 2250 | "serde_json", 2251 | "serde_urlencoded", 2252 | "tokio", 2253 | "tokio-rustls", 2254 | "url", 2255 | "wasm-bindgen", 2256 | "wasm-bindgen-futures", 2257 | "web-sys", 2258 | "webpki-roots", 2259 | "winreg", 2260 | ] 2261 | 2262 | [[package]] 2263 | name = "ring" 2264 | version = "0.16.20" 2265 | source = "registry+https://github.com/rust-lang/crates.io-index" 2266 | checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2267 | dependencies = [ 2268 | "cc", 2269 | "libc", 2270 | "once_cell", 2271 | "spin", 2272 | "untrusted", 2273 | "web-sys", 2274 | "winapi", 2275 | ] 2276 | 2277 | [[package]] 2278 | name = "rpassword" 2279 | version = "6.0.1" 2280 | source = "registry+https://github.com/rust-lang/crates.io-index" 2281 | checksum = "2bf099a1888612545b683d2661a1940089f6c2e5a8e38979b2159da876bfd956" 2282 | dependencies = [ 2283 | "libc", 2284 | "serde", 2285 | "serde_json", 2286 | "winapi", 2287 | ] 2288 | 2289 | [[package]] 2290 | name = "rustc-demangle" 2291 | version = "0.1.21" 2292 | source = "registry+https://github.com/rust-lang/crates.io-index" 2293 | checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 2294 | 2295 | [[package]] 2296 | name = "rustc-hash" 2297 | version = "1.1.0" 2298 | source = "registry+https://github.com/rust-lang/crates.io-index" 2299 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2300 | 2301 | [[package]] 2302 | name = "rustc_version" 2303 | version = "0.4.0" 2304 | source = "registry+https://github.com/rust-lang/crates.io-index" 2305 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2306 | dependencies = [ 2307 | "semver", 2308 | ] 2309 | 2310 | [[package]] 2311 | name = "rustls" 2312 | version = "0.20.5" 2313 | source = "registry+https://github.com/rust-lang/crates.io-index" 2314 | checksum = "a024a432ae760ab3bff924ad91ce1cfa52cb57ed16e1ef32d0d249cfee1a6c13" 2315 | dependencies = [ 2316 | "log", 2317 | "ring", 2318 | "sct", 2319 | "webpki", 2320 | ] 2321 | 2322 | [[package]] 2323 | name = "rustls-native-certs" 2324 | version = "0.6.2" 2325 | source = "registry+https://github.com/rust-lang/crates.io-index" 2326 | checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 2327 | dependencies = [ 2328 | "openssl-probe", 2329 | "rustls-pemfile 1.0.0", 2330 | "schannel", 2331 | "security-framework", 2332 | ] 2333 | 2334 | [[package]] 2335 | name = "rustls-pemfile" 2336 | version = "0.2.1" 2337 | source = "registry+https://github.com/rust-lang/crates.io-index" 2338 | checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" 2339 | dependencies = [ 2340 | "base64 0.13.0", 2341 | ] 2342 | 2343 | [[package]] 2344 | name = "rustls-pemfile" 2345 | version = "0.3.0" 2346 | source = "registry+https://github.com/rust-lang/crates.io-index" 2347 | checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" 2348 | dependencies = [ 2349 | "base64 0.13.0", 2350 | ] 2351 | 2352 | [[package]] 2353 | name = "rustls-pemfile" 2354 | version = "1.0.0" 2355 | source = "registry+https://github.com/rust-lang/crates.io-index" 2356 | checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" 2357 | dependencies = [ 2358 | "base64 0.13.0", 2359 | ] 2360 | 2361 | [[package]] 2362 | name = "rustversion" 2363 | version = "1.0.6" 2364 | source = "registry+https://github.com/rust-lang/crates.io-index" 2365 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" 2366 | 2367 | [[package]] 2368 | name = "ryu" 2369 | version = "1.0.10" 2370 | source = "registry+https://github.com/rust-lang/crates.io-index" 2371 | checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 2372 | 2373 | [[package]] 2374 | name = "same-file" 2375 | version = "1.0.6" 2376 | source = "registry+https://github.com/rust-lang/crates.io-index" 2377 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2378 | dependencies = [ 2379 | "winapi-util", 2380 | ] 2381 | 2382 | [[package]] 2383 | name = "schannel" 2384 | version = "0.1.19" 2385 | source = "registry+https://github.com/rust-lang/crates.io-index" 2386 | checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 2387 | dependencies = [ 2388 | "lazy_static", 2389 | "winapi", 2390 | ] 2391 | 2392 | [[package]] 2393 | name = "scopeguard" 2394 | version = "1.1.0" 2395 | source = "registry+https://github.com/rust-lang/crates.io-index" 2396 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2397 | 2398 | [[package]] 2399 | name = "scroll" 2400 | version = "0.10.2" 2401 | source = "registry+https://github.com/rust-lang/crates.io-index" 2402 | checksum = "fda28d4b4830b807a8b43f7b0e6b5df875311b3e7621d84577188c175b6ec1ec" 2403 | dependencies = [ 2404 | "scroll_derive", 2405 | ] 2406 | 2407 | [[package]] 2408 | name = "scroll_derive" 2409 | version = "0.10.5" 2410 | source = "registry+https://github.com/rust-lang/crates.io-index" 2411 | checksum = "aaaae8f38bb311444cfb7f1979af0bc9240d95795f75f9ceddf6a59b79ceffa0" 2412 | dependencies = [ 2413 | "proc-macro2 1.0.38", 2414 | "quote 1.0.18", 2415 | "syn 1.0.94", 2416 | ] 2417 | 2418 | [[package]] 2419 | name = "sct" 2420 | version = "0.7.0" 2421 | source = "registry+https://github.com/rust-lang/crates.io-index" 2422 | checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 2423 | dependencies = [ 2424 | "ring", 2425 | "untrusted", 2426 | ] 2427 | 2428 | [[package]] 2429 | name = "security-framework" 2430 | version = "2.6.1" 2431 | source = "registry+https://github.com/rust-lang/crates.io-index" 2432 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 2433 | dependencies = [ 2434 | "bitflags", 2435 | "core-foundation", 2436 | "core-foundation-sys", 2437 | "libc", 2438 | "security-framework-sys", 2439 | ] 2440 | 2441 | [[package]] 2442 | name = "security-framework-sys" 2443 | version = "2.6.1" 2444 | source = "registry+https://github.com/rust-lang/crates.io-index" 2445 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2446 | dependencies = [ 2447 | "core-foundation-sys", 2448 | "libc", 2449 | ] 2450 | 2451 | [[package]] 2452 | name = "semver" 2453 | version = "1.0.9" 2454 | source = "registry+https://github.com/rust-lang/crates.io-index" 2455 | checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd" 2456 | 2457 | [[package]] 2458 | name = "serde" 2459 | version = "1.0.137" 2460 | source = "registry+https://github.com/rust-lang/crates.io-index" 2461 | checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 2462 | dependencies = [ 2463 | "serde_derive", 2464 | ] 2465 | 2466 | [[package]] 2467 | name = "serde_bytes" 2468 | version = "0.11.6" 2469 | source = "registry+https://github.com/rust-lang/crates.io-index" 2470 | checksum = "212e73464ebcde48d723aa02eb270ba62eff38a9b732df31f33f1b4e145f3a54" 2471 | dependencies = [ 2472 | "serde", 2473 | ] 2474 | 2475 | [[package]] 2476 | name = "serde_derive" 2477 | version = "1.0.137" 2478 | source = "registry+https://github.com/rust-lang/crates.io-index" 2479 | checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" 2480 | dependencies = [ 2481 | "proc-macro2 1.0.38", 2482 | "quote 1.0.18", 2483 | "syn 1.0.94", 2484 | ] 2485 | 2486 | [[package]] 2487 | name = "serde_json" 2488 | version = "1.0.81" 2489 | source = "registry+https://github.com/rust-lang/crates.io-index" 2490 | checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" 2491 | dependencies = [ 2492 | "itoa", 2493 | "ryu", 2494 | "serde", 2495 | ] 2496 | 2497 | [[package]] 2498 | name = "serde_urlencoded" 2499 | version = "0.7.1" 2500 | source = "registry+https://github.com/rust-lang/crates.io-index" 2501 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2502 | dependencies = [ 2503 | "form_urlencoded", 2504 | "itoa", 2505 | "ryu", 2506 | "serde", 2507 | ] 2508 | 2509 | [[package]] 2510 | name = "serde_yaml" 2511 | version = "0.8.24" 2512 | source = "registry+https://github.com/rust-lang/crates.io-index" 2513 | checksum = "707d15895415db6628332b737c838b88c598522e4dc70647e59b72312924aebc" 2514 | dependencies = [ 2515 | "indexmap", 2516 | "ryu", 2517 | "serde", 2518 | "yaml-rust", 2519 | ] 2520 | 2521 | [[package]] 2522 | name = "sha-1" 2523 | version = "0.10.0" 2524 | source = "registry+https://github.com/rust-lang/crates.io-index" 2525 | checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 2526 | dependencies = [ 2527 | "cfg-if", 2528 | "cpufeatures", 2529 | "digest 0.10.3", 2530 | ] 2531 | 2532 | [[package]] 2533 | name = "sha2" 2534 | version = "0.9.9" 2535 | source = "registry+https://github.com/rust-lang/crates.io-index" 2536 | checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 2537 | dependencies = [ 2538 | "block-buffer 0.9.0", 2539 | "cfg-if", 2540 | "cpufeatures", 2541 | "digest 0.9.0", 2542 | "opaque-debug", 2543 | ] 2544 | 2545 | [[package]] 2546 | name = "sha2" 2547 | version = "0.10.2" 2548 | source = "registry+https://github.com/rust-lang/crates.io-index" 2549 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 2550 | dependencies = [ 2551 | "cfg-if", 2552 | "cpufeatures", 2553 | "digest 0.10.3", 2554 | ] 2555 | 2556 | [[package]] 2557 | name = "sha3" 2558 | version = "0.9.1" 2559 | source = "registry+https://github.com/rust-lang/crates.io-index" 2560 | checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" 2561 | dependencies = [ 2562 | "block-buffer 0.9.0", 2563 | "digest 0.9.0", 2564 | "keccak", 2565 | "opaque-debug", 2566 | ] 2567 | 2568 | [[package]] 2569 | name = "sha3" 2570 | version = "0.10.1" 2571 | source = "registry+https://github.com/rust-lang/crates.io-index" 2572 | checksum = "881bf8156c87b6301fc5ca6b27f11eeb2761224c7081e69b409d5a1951a70c86" 2573 | dependencies = [ 2574 | "digest 0.10.3", 2575 | "keccak", 2576 | ] 2577 | 2578 | [[package]] 2579 | name = "sharded-slab" 2580 | version = "0.1.4" 2581 | source = "registry+https://github.com/rust-lang/crates.io-index" 2582 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2583 | dependencies = [ 2584 | "lazy_static", 2585 | ] 2586 | 2587 | [[package]] 2588 | name = "signal-hook-registry" 2589 | version = "1.4.0" 2590 | source = "registry+https://github.com/rust-lang/crates.io-index" 2591 | checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 2592 | dependencies = [ 2593 | "libc", 2594 | ] 2595 | 2596 | [[package]] 2597 | name = "signature" 2598 | version = "1.5.0" 2599 | source = "registry+https://github.com/rust-lang/crates.io-index" 2600 | checksum = "f054c6c1a6e95179d6f23ed974060dcefb2d9388bb7256900badad682c499de4" 2601 | 2602 | [[package]] 2603 | name = "sized-chunks" 2604 | version = "0.6.5" 2605 | source = "registry+https://github.com/rust-lang/crates.io-index" 2606 | checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" 2607 | dependencies = [ 2608 | "bitmaps", 2609 | "typenum", 2610 | ] 2611 | 2612 | [[package]] 2613 | name = "slab" 2614 | version = "0.4.6" 2615 | source = "registry+https://github.com/rust-lang/crates.io-index" 2616 | checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 2617 | 2618 | [[package]] 2619 | name = "smallvec" 2620 | version = "1.8.0" 2621 | source = "registry+https://github.com/rust-lang/crates.io-index" 2622 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" 2623 | 2624 | [[package]] 2625 | name = "socket2" 2626 | version = "0.4.4" 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" 2628 | checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 2629 | dependencies = [ 2630 | "libc", 2631 | "winapi", 2632 | ] 2633 | 2634 | [[package]] 2635 | name = "solana-account-decoder" 2636 | version = "1.10.14" 2637 | source = "registry+https://github.com/rust-lang/crates.io-index" 2638 | checksum = "d75a32a490158fd5a6d88ac1d2c3194bb8c7001cde397c2d3e0a58d24b79f1ce" 2639 | dependencies = [ 2640 | "Inflector", 2641 | "base64 0.13.0", 2642 | "bincode", 2643 | "bs58", 2644 | "bv", 2645 | "lazy_static", 2646 | "serde", 2647 | "serde_derive", 2648 | "serde_json", 2649 | "solana-config-program", 2650 | "solana-sdk", 2651 | "solana-vote-program", 2652 | "spl-token", 2653 | "spl-token-2022", 2654 | "thiserror", 2655 | "zstd", 2656 | ] 2657 | 2658 | [[package]] 2659 | name = "solana-address-lookup-table-program" 2660 | version = "1.10.14" 2661 | source = "registry+https://github.com/rust-lang/crates.io-index" 2662 | checksum = "d3fff9c10039de343a5be0373d9c555576d9370cafdd2927eee70b63075497b7" 2663 | dependencies = [ 2664 | "bincode", 2665 | "bytemuck", 2666 | "log", 2667 | "num-derive", 2668 | "num-traits", 2669 | "rustc_version", 2670 | "serde", 2671 | "solana-frozen-abi", 2672 | "solana-frozen-abi-macro", 2673 | "solana-program", 2674 | "solana-program-runtime", 2675 | "solana-sdk", 2676 | "thiserror", 2677 | ] 2678 | 2679 | [[package]] 2680 | name = "solana-banks-client" 2681 | version = "1.10.14" 2682 | source = "registry+https://github.com/rust-lang/crates.io-index" 2683 | checksum = "80d36026599e08dc83dc94741866f9834fba7727d67c6e7f961c47e110f1e026" 2684 | dependencies = [ 2685 | "borsh", 2686 | "futures", 2687 | "solana-banks-interface", 2688 | "solana-program", 2689 | "solana-sdk", 2690 | "tarpc", 2691 | "thiserror", 2692 | "tokio", 2693 | "tokio-serde", 2694 | ] 2695 | 2696 | [[package]] 2697 | name = "solana-banks-interface" 2698 | version = "1.10.14" 2699 | source = "registry+https://github.com/rust-lang/crates.io-index" 2700 | checksum = "58ed84d0642f92b0476e94f5d495c1f75900db00d82448a424f4c1bd4088b3e0" 2701 | dependencies = [ 2702 | "serde", 2703 | "solana-sdk", 2704 | "tarpc", 2705 | ] 2706 | 2707 | [[package]] 2708 | name = "solana-banks-server" 2709 | version = "1.10.14" 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" 2711 | checksum = "21a2096f08a4a1f994d9ed8b5ad315763f11d325aa2380f1ed3182f1861b75b7" 2712 | dependencies = [ 2713 | "bincode", 2714 | "crossbeam-channel", 2715 | "futures", 2716 | "solana-banks-interface", 2717 | "solana-runtime", 2718 | "solana-sdk", 2719 | "solana-send-transaction-service", 2720 | "tarpc", 2721 | "tokio", 2722 | "tokio-serde", 2723 | "tokio-stream", 2724 | ] 2725 | 2726 | [[package]] 2727 | name = "solana-bpf-loader-program" 2728 | version = "1.10.14" 2729 | source = "registry+https://github.com/rust-lang/crates.io-index" 2730 | checksum = "321054ff119d4adf7a83d71eedd11f819d610de4e5c401d13ec872f78d4890a0" 2731 | dependencies = [ 2732 | "bincode", 2733 | "byteorder", 2734 | "libsecp256k1", 2735 | "log", 2736 | "solana-measure", 2737 | "solana-metrics", 2738 | "solana-program-runtime", 2739 | "solana-sdk", 2740 | "solana-zk-token-sdk 1.10.14", 2741 | "solana_rbpf", 2742 | "thiserror", 2743 | ] 2744 | 2745 | [[package]] 2746 | name = "solana-bucket-map" 2747 | version = "1.10.14" 2748 | source = "registry+https://github.com/rust-lang/crates.io-index" 2749 | checksum = "d375d8a51e644289c3089149597f6833c754d1b835386e1a0f3c2335b2f31e3b" 2750 | dependencies = [ 2751 | "log", 2752 | "memmap2", 2753 | "modular-bitfield", 2754 | "rand 0.7.3", 2755 | "solana-measure", 2756 | "solana-sdk", 2757 | "tempfile", 2758 | ] 2759 | 2760 | [[package]] 2761 | name = "solana-clap-utils" 2762 | version = "1.10.14" 2763 | source = "registry+https://github.com/rust-lang/crates.io-index" 2764 | checksum = "af7cb6cd67a1246b1ebf5820a3fbb56efb1371f1b34ea00185e142caf0ffb7d0" 2765 | dependencies = [ 2766 | "chrono", 2767 | "clap", 2768 | "rpassword", 2769 | "solana-perf", 2770 | "solana-remote-wallet", 2771 | "solana-sdk", 2772 | "thiserror", 2773 | "tiny-bip39", 2774 | "uriparse", 2775 | "url", 2776 | ] 2777 | 2778 | [[package]] 2779 | name = "solana-cli-config" 2780 | version = "1.10.14" 2781 | source = "registry+https://github.com/rust-lang/crates.io-index" 2782 | checksum = "73c32d357caf7ab5a978f9e386d06934ff23ffaf92745fe022645d3832463dce" 2783 | dependencies = [ 2784 | "dirs-next", 2785 | "lazy_static", 2786 | "serde", 2787 | "serde_derive", 2788 | "serde_yaml", 2789 | "solana-clap-utils", 2790 | "solana-sdk", 2791 | "url", 2792 | ] 2793 | 2794 | [[package]] 2795 | name = "solana-client" 2796 | version = "1.10.14" 2797 | source = "registry+https://github.com/rust-lang/crates.io-index" 2798 | checksum = "885a8356546bafe0d2df323b7262f11342010768233e3d23a737a42e84e73e42" 2799 | dependencies = [ 2800 | "async-mutex", 2801 | "async-trait", 2802 | "base64 0.13.0", 2803 | "bincode", 2804 | "bs58", 2805 | "bytes", 2806 | "clap", 2807 | "crossbeam-channel", 2808 | "futures", 2809 | "futures-util", 2810 | "indexmap", 2811 | "indicatif", 2812 | "itertools", 2813 | "jsonrpc-core", 2814 | "lazy_static", 2815 | "log", 2816 | "lru", 2817 | "quinn", 2818 | "quinn-proto", 2819 | "rand 0.7.3", 2820 | "rand_chacha 0.2.2", 2821 | "rayon", 2822 | "reqwest", 2823 | "rustls", 2824 | "semver", 2825 | "serde", 2826 | "serde_derive", 2827 | "serde_json", 2828 | "solana-account-decoder", 2829 | "solana-clap-utils", 2830 | "solana-faucet", 2831 | "solana-measure", 2832 | "solana-metrics", 2833 | "solana-net-utils", 2834 | "solana-sdk", 2835 | "solana-streamer", 2836 | "solana-transaction-status", 2837 | "solana-version", 2838 | "solana-vote-program", 2839 | "thiserror", 2840 | "tokio", 2841 | "tokio-stream", 2842 | "tokio-tungstenite", 2843 | "tungstenite", 2844 | "url", 2845 | ] 2846 | 2847 | [[package]] 2848 | name = "solana-compute-budget-program" 2849 | version = "1.10.14" 2850 | source = "registry+https://github.com/rust-lang/crates.io-index" 2851 | checksum = "df32a9645e1afa3ab798474e5ac677d17c37e8fd65b1eacefc2357117dd320db" 2852 | dependencies = [ 2853 | "solana-program-runtime", 2854 | "solana-sdk", 2855 | ] 2856 | 2857 | [[package]] 2858 | name = "solana-config-program" 2859 | version = "1.10.14" 2860 | source = "registry+https://github.com/rust-lang/crates.io-index" 2861 | checksum = "b0aab8efd563ee2f433f9a7c8389bfebdec04d306b29423a3001562eb20735b1" 2862 | dependencies = [ 2863 | "bincode", 2864 | "chrono", 2865 | "serde", 2866 | "serde_derive", 2867 | "solana-program-runtime", 2868 | "solana-sdk", 2869 | ] 2870 | 2871 | [[package]] 2872 | name = "solana-faucet" 2873 | version = "1.10.14" 2874 | source = "registry+https://github.com/rust-lang/crates.io-index" 2875 | checksum = "9aafc427bf7b173d9e7b52c7915c9149b0444a19373a675e5127584947dcac5c" 2876 | dependencies = [ 2877 | "bincode", 2878 | "byteorder", 2879 | "clap", 2880 | "crossbeam-channel", 2881 | "log", 2882 | "serde", 2883 | "serde_derive", 2884 | "solana-clap-utils", 2885 | "solana-cli-config", 2886 | "solana-logger", 2887 | "solana-metrics", 2888 | "solana-sdk", 2889 | "solana-version", 2890 | "spl-memo", 2891 | "thiserror", 2892 | "tokio", 2893 | ] 2894 | 2895 | [[package]] 2896 | name = "solana-frozen-abi" 2897 | version = "1.10.14" 2898 | source = "registry+https://github.com/rust-lang/crates.io-index" 2899 | checksum = "23b55c0145bfb801cc009003ff0996c6bc410229c1b4f5a9e05c44c06bfb8066" 2900 | dependencies = [ 2901 | "bs58", 2902 | "bv", 2903 | "generic-array", 2904 | "im", 2905 | "lazy_static", 2906 | "log", 2907 | "memmap2", 2908 | "rustc_version", 2909 | "serde", 2910 | "serde_bytes", 2911 | "serde_derive", 2912 | "sha2 0.10.2", 2913 | "solana-frozen-abi-macro", 2914 | "thiserror", 2915 | ] 2916 | 2917 | [[package]] 2918 | name = "solana-frozen-abi-macro" 2919 | version = "1.10.14" 2920 | source = "registry+https://github.com/rust-lang/crates.io-index" 2921 | checksum = "30012cbb6999f997d644a685c9cbbf5d9b09b3336c44d10b4c478eb78185136d" 2922 | dependencies = [ 2923 | "proc-macro2 1.0.38", 2924 | "quote 1.0.18", 2925 | "rustc_version", 2926 | "syn 1.0.94", 2927 | ] 2928 | 2929 | [[package]] 2930 | name = "solana-logger" 2931 | version = "1.10.14" 2932 | source = "registry+https://github.com/rust-lang/crates.io-index" 2933 | checksum = "f762db6c1ee5dc155569f8ca70aac0ab70e1459544172024318b013d89b0bf2a" 2934 | dependencies = [ 2935 | "env_logger", 2936 | "lazy_static", 2937 | "log", 2938 | ] 2939 | 2940 | [[package]] 2941 | name = "solana-measure" 2942 | version = "1.10.14" 2943 | source = "registry+https://github.com/rust-lang/crates.io-index" 2944 | checksum = "4daa244523b9740f77255e9f2ad43810c822fc32372eeb2563fc659b9dd943c2" 2945 | dependencies = [ 2946 | "log", 2947 | "solana-sdk", 2948 | ] 2949 | 2950 | [[package]] 2951 | name = "solana-metrics" 2952 | version = "1.10.14" 2953 | source = "registry+https://github.com/rust-lang/crates.io-index" 2954 | checksum = "fb655c6b9f8ecb39aa4ff34cc5d3866de6ee0ce0895031071579a0a7e2f39c88" 2955 | dependencies = [ 2956 | "crossbeam-channel", 2957 | "gethostname", 2958 | "lazy_static", 2959 | "log", 2960 | "reqwest", 2961 | "solana-sdk", 2962 | ] 2963 | 2964 | [[package]] 2965 | name = "solana-net-utils" 2966 | version = "1.10.14" 2967 | source = "registry+https://github.com/rust-lang/crates.io-index" 2968 | checksum = "27f5f9077d6a4e5d18cfdfafd3b3f4cfea274d7dd2516c11d1489bf45f2d4737" 2969 | dependencies = [ 2970 | "bincode", 2971 | "clap", 2972 | "crossbeam-channel", 2973 | "log", 2974 | "nix", 2975 | "rand 0.7.3", 2976 | "serde", 2977 | "serde_derive", 2978 | "socket2", 2979 | "solana-logger", 2980 | "solana-sdk", 2981 | "solana-version", 2982 | "tokio", 2983 | "url", 2984 | ] 2985 | 2986 | [[package]] 2987 | name = "solana-perf" 2988 | version = "1.10.14" 2989 | source = "registry+https://github.com/rust-lang/crates.io-index" 2990 | checksum = "0df91b372af2e2af3c7c078e3b082dc01480db57fd5968d2d7334cb1789e46c1" 2991 | dependencies = [ 2992 | "ahash", 2993 | "bincode", 2994 | "bv", 2995 | "caps", 2996 | "curve25519-dalek", 2997 | "dlopen", 2998 | "dlopen_derive", 2999 | "fnv", 3000 | "lazy_static", 3001 | "libc", 3002 | "log", 3003 | "nix", 3004 | "rand 0.7.3", 3005 | "rayon", 3006 | "serde", 3007 | "solana-metrics", 3008 | "solana-rayon-threadlimit", 3009 | "solana-sdk", 3010 | "solana-vote-program", 3011 | ] 3012 | 3013 | [[package]] 3014 | name = "solana-program" 3015 | version = "1.10.14" 3016 | source = "registry+https://github.com/rust-lang/crates.io-index" 3017 | checksum = "8d475315a849774fb445cb2849897bcb028e9f23755c1ce050758825ccce50a5" 3018 | dependencies = [ 3019 | "base64 0.13.0", 3020 | "bincode", 3021 | "bitflags", 3022 | "blake3", 3023 | "borsh", 3024 | "borsh-derive", 3025 | "bs58", 3026 | "bv", 3027 | "bytemuck", 3028 | "console_error_panic_hook", 3029 | "console_log", 3030 | "curve25519-dalek", 3031 | "getrandom 0.1.16", 3032 | "itertools", 3033 | "js-sys", 3034 | "lazy_static", 3035 | "libsecp256k1", 3036 | "log", 3037 | "num-derive", 3038 | "num-traits", 3039 | "parking_lot 0.12.0", 3040 | "rand 0.7.3", 3041 | "rustc_version", 3042 | "rustversion", 3043 | "serde", 3044 | "serde_bytes", 3045 | "serde_derive", 3046 | "sha2 0.10.2", 3047 | "sha3 0.10.1", 3048 | "solana-frozen-abi", 3049 | "solana-frozen-abi-macro", 3050 | "solana-sdk-macro", 3051 | "thiserror", 3052 | "wasm-bindgen", 3053 | ] 3054 | 3055 | [[package]] 3056 | name = "solana-program-runtime" 3057 | version = "1.10.14" 3058 | source = "registry+https://github.com/rust-lang/crates.io-index" 3059 | checksum = "62d1f4078ae24e7634e58e58362ae95388b8135da08241f61d3a76ab1a7302ca" 3060 | dependencies = [ 3061 | "base64 0.13.0", 3062 | "bincode", 3063 | "enum-iterator", 3064 | "itertools", 3065 | "libc", 3066 | "libloading", 3067 | "log", 3068 | "num-derive", 3069 | "num-traits", 3070 | "rustc_version", 3071 | "serde", 3072 | "solana-frozen-abi", 3073 | "solana-frozen-abi-macro", 3074 | "solana-measure", 3075 | "solana-sdk", 3076 | "thiserror", 3077 | ] 3078 | 3079 | [[package]] 3080 | name = "solana-program-test" 3081 | version = "1.10.14" 3082 | source = "registry+https://github.com/rust-lang/crates.io-index" 3083 | checksum = "f83afedfb4588ea9f2df26a94299228a53e497c2f2f8d0e8bd2e130111c645ae" 3084 | dependencies = [ 3085 | "async-trait", 3086 | "base64 0.13.0", 3087 | "bincode", 3088 | "chrono-humanize", 3089 | "log", 3090 | "serde", 3091 | "solana-banks-client", 3092 | "solana-banks-server", 3093 | "solana-bpf-loader-program", 3094 | "solana-logger", 3095 | "solana-program-runtime", 3096 | "solana-runtime", 3097 | "solana-sdk", 3098 | "solana-vote-program", 3099 | "thiserror", 3100 | "tokio", 3101 | ] 3102 | 3103 | [[package]] 3104 | name = "solana-rayon-threadlimit" 3105 | version = "1.10.14" 3106 | source = "registry+https://github.com/rust-lang/crates.io-index" 3107 | checksum = "9258cd18d3254cefe247b26fba07fd2cc3593ddd2cdfc5704e96daaf9b2eafa8" 3108 | dependencies = [ 3109 | "lazy_static", 3110 | "num_cpus", 3111 | ] 3112 | 3113 | [[package]] 3114 | name = "solana-remote-wallet" 3115 | version = "1.10.14" 3116 | source = "registry+https://github.com/rust-lang/crates.io-index" 3117 | checksum = "fb155752515ec4b424d6066bd3aac79205da95eedcb34bd1f9c4f4d2e3d97118" 3118 | dependencies = [ 3119 | "console", 3120 | "dialoguer", 3121 | "log", 3122 | "num-derive", 3123 | "num-traits", 3124 | "parking_lot 0.12.0", 3125 | "qstring", 3126 | "semver", 3127 | "solana-sdk", 3128 | "thiserror", 3129 | "uriparse", 3130 | ] 3131 | 3132 | [[package]] 3133 | name = "solana-runtime" 3134 | version = "1.10.14" 3135 | source = "registry+https://github.com/rust-lang/crates.io-index" 3136 | checksum = "ae996234ff481c55e29999821254301fe009ee7aef3c39a4b1f17afe1908ba4e" 3137 | dependencies = [ 3138 | "arrayref", 3139 | "bincode", 3140 | "blake3", 3141 | "bv", 3142 | "bytemuck", 3143 | "byteorder", 3144 | "bzip2", 3145 | "crossbeam-channel", 3146 | "dashmap", 3147 | "dir-diff", 3148 | "flate2", 3149 | "fnv", 3150 | "im", 3151 | "index_list", 3152 | "itertools", 3153 | "lazy_static", 3154 | "log", 3155 | "memmap2", 3156 | "num-derive", 3157 | "num-traits", 3158 | "num_cpus", 3159 | "ouroboros", 3160 | "rand 0.7.3", 3161 | "rayon", 3162 | "regex", 3163 | "rustc_version", 3164 | "serde", 3165 | "serde_derive", 3166 | "solana-address-lookup-table-program", 3167 | "solana-bucket-map", 3168 | "solana-compute-budget-program", 3169 | "solana-config-program", 3170 | "solana-frozen-abi", 3171 | "solana-frozen-abi-macro", 3172 | "solana-measure", 3173 | "solana-metrics", 3174 | "solana-program-runtime", 3175 | "solana-rayon-threadlimit", 3176 | "solana-sdk", 3177 | "solana-stake-program", 3178 | "solana-vote-program", 3179 | "solana-zk-token-proof-program", 3180 | "solana-zk-token-sdk 1.10.14", 3181 | "symlink", 3182 | "tar", 3183 | "tempfile", 3184 | "thiserror", 3185 | "zstd", 3186 | ] 3187 | 3188 | [[package]] 3189 | name = "solana-sdk" 3190 | version = "1.10.14" 3191 | source = "registry+https://github.com/rust-lang/crates.io-index" 3192 | checksum = "658f75cb5c105c16477973d98fdeb78bdb170c4e33d1f05834139f873a3e40c5" 3193 | dependencies = [ 3194 | "assert_matches", 3195 | "base64 0.13.0", 3196 | "bincode", 3197 | "bitflags", 3198 | "borsh", 3199 | "bs58", 3200 | "bytemuck", 3201 | "byteorder", 3202 | "chrono", 3203 | "derivation-path", 3204 | "digest 0.10.3", 3205 | "ed25519-dalek", 3206 | "ed25519-dalek-bip32", 3207 | "generic-array", 3208 | "hmac 0.12.1", 3209 | "itertools", 3210 | "js-sys", 3211 | "lazy_static", 3212 | "libsecp256k1", 3213 | "log", 3214 | "memmap2", 3215 | "num-derive", 3216 | "num-traits", 3217 | "pbkdf2 0.10.1", 3218 | "qstring", 3219 | "rand 0.7.3", 3220 | "rand_chacha 0.2.2", 3221 | "rustc_version", 3222 | "rustversion", 3223 | "serde", 3224 | "serde_bytes", 3225 | "serde_derive", 3226 | "serde_json", 3227 | "sha2 0.10.2", 3228 | "sha3 0.10.1", 3229 | "solana-frozen-abi", 3230 | "solana-frozen-abi-macro", 3231 | "solana-logger", 3232 | "solana-program", 3233 | "solana-sdk-macro", 3234 | "thiserror", 3235 | "uriparse", 3236 | "wasm-bindgen", 3237 | ] 3238 | 3239 | [[package]] 3240 | name = "solana-sdk-macro" 3241 | version = "1.10.14" 3242 | source = "registry+https://github.com/rust-lang/crates.io-index" 3243 | checksum = "4c9a87b60a95843c416e4b47bc56570fa18a3b5a6601151f1d99e7c6c4eca767" 3244 | dependencies = [ 3245 | "bs58", 3246 | "proc-macro2 1.0.38", 3247 | "quote 1.0.18", 3248 | "rustversion", 3249 | "syn 1.0.94", 3250 | ] 3251 | 3252 | [[package]] 3253 | name = "solana-send-transaction-service" 3254 | version = "1.10.14" 3255 | source = "registry+https://github.com/rust-lang/crates.io-index" 3256 | checksum = "5ba587f5833dc82ec61d2656ed7c8f0554c4f04a2f3df90f77348fffc9c26497" 3257 | dependencies = [ 3258 | "crossbeam-channel", 3259 | "log", 3260 | "solana-client", 3261 | "solana-measure", 3262 | "solana-metrics", 3263 | "solana-runtime", 3264 | "solana-sdk", 3265 | ] 3266 | 3267 | [[package]] 3268 | name = "solana-stake-program" 3269 | version = "1.10.14" 3270 | source = "registry+https://github.com/rust-lang/crates.io-index" 3271 | checksum = "75fe33828a986f29b532fb8647c9ec813c8054297b4d74b8c156f240660ee91b" 3272 | dependencies = [ 3273 | "bincode", 3274 | "log", 3275 | "num-derive", 3276 | "num-traits", 3277 | "rustc_version", 3278 | "serde", 3279 | "serde_derive", 3280 | "solana-config-program", 3281 | "solana-frozen-abi", 3282 | "solana-frozen-abi-macro", 3283 | "solana-metrics", 3284 | "solana-program-runtime", 3285 | "solana-sdk", 3286 | "solana-vote-program", 3287 | "thiserror", 3288 | ] 3289 | 3290 | [[package]] 3291 | name = "solana-streamer" 3292 | version = "1.10.14" 3293 | source = "registry+https://github.com/rust-lang/crates.io-index" 3294 | checksum = "1662e8211b17cc7bd7b45cde3f2545572684b2ba012206522afbaec6817c7551" 3295 | dependencies = [ 3296 | "crossbeam-channel", 3297 | "futures-util", 3298 | "histogram", 3299 | "itertools", 3300 | "libc", 3301 | "log", 3302 | "nix", 3303 | "pem", 3304 | "pkcs8", 3305 | "quinn", 3306 | "rand 0.7.3", 3307 | "rcgen", 3308 | "rustls", 3309 | "solana-metrics", 3310 | "solana-perf", 3311 | "solana-sdk", 3312 | "thiserror", 3313 | "tokio", 3314 | ] 3315 | 3316 | [[package]] 3317 | name = "solana-transaction-status" 3318 | version = "1.10.14" 3319 | source = "registry+https://github.com/rust-lang/crates.io-index" 3320 | checksum = "c7a55dc30085de9f7f49f46a9a16eb199d1647f954aaedfe90214b83db9cc83e" 3321 | dependencies = [ 3322 | "Inflector", 3323 | "base64 0.13.0", 3324 | "bincode", 3325 | "borsh", 3326 | "bs58", 3327 | "lazy_static", 3328 | "log", 3329 | "serde", 3330 | "serde_derive", 3331 | "serde_json", 3332 | "solana-account-decoder", 3333 | "solana-measure", 3334 | "solana-metrics", 3335 | "solana-runtime", 3336 | "solana-sdk", 3337 | "solana-vote-program", 3338 | "spl-associated-token-account", 3339 | "spl-memo", 3340 | "spl-token", 3341 | "spl-token-2022", 3342 | "thiserror", 3343 | ] 3344 | 3345 | [[package]] 3346 | name = "solana-version" 3347 | version = "1.10.14" 3348 | source = "registry+https://github.com/rust-lang/crates.io-index" 3349 | checksum = "bf3a4a3a9023c7b0ddbf14af7b7b45f4b346ccadc8f5d298501b02987b2a4450" 3350 | dependencies = [ 3351 | "log", 3352 | "rustc_version", 3353 | "serde", 3354 | "serde_derive", 3355 | "solana-frozen-abi", 3356 | "solana-frozen-abi-macro", 3357 | "solana-sdk", 3358 | ] 3359 | 3360 | [[package]] 3361 | name = "solana-vote-program" 3362 | version = "1.10.14" 3363 | source = "registry+https://github.com/rust-lang/crates.io-index" 3364 | checksum = "68b9efa5d23367994d25e3fad8f1db30c957a901373f998e8f104aaa52608ae9" 3365 | dependencies = [ 3366 | "bincode", 3367 | "log", 3368 | "num-derive", 3369 | "num-traits", 3370 | "rustc_version", 3371 | "serde", 3372 | "serde_derive", 3373 | "solana-frozen-abi", 3374 | "solana-frozen-abi-macro", 3375 | "solana-metrics", 3376 | "solana-program-runtime", 3377 | "solana-sdk", 3378 | "thiserror", 3379 | ] 3380 | 3381 | [[package]] 3382 | name = "solana-zk-token-proof-program" 3383 | version = "1.10.14" 3384 | source = "registry+https://github.com/rust-lang/crates.io-index" 3385 | checksum = "c4e1c518e9eee89f46d82c53b3ab52390734aabfd0a3d33199a59b5b7fce4e59" 3386 | dependencies = [ 3387 | "bytemuck", 3388 | "getrandom 0.1.16", 3389 | "num-derive", 3390 | "num-traits", 3391 | "solana-program-runtime", 3392 | "solana-sdk", 3393 | "solana-zk-token-sdk 1.10.14", 3394 | ] 3395 | 3396 | [[package]] 3397 | name = "solana-zk-token-sdk" 3398 | version = "0.8.1" 3399 | source = "registry+https://github.com/rust-lang/crates.io-index" 3400 | checksum = "74b149253f9ed1afb68b3161b53b62b637d0dd7a3b328dffdc8bb5878d48358e" 3401 | dependencies = [ 3402 | "aes-gcm-siv", 3403 | "arrayref", 3404 | "base64 0.13.0", 3405 | "bincode", 3406 | "bytemuck", 3407 | "byteorder", 3408 | "cipher 0.3.0", 3409 | "curve25519-dalek", 3410 | "getrandom 0.1.16", 3411 | "lazy_static", 3412 | "merlin", 3413 | "num-derive", 3414 | "num-traits", 3415 | "rand 0.7.3", 3416 | "serde", 3417 | "serde_json", 3418 | "sha3 0.9.1", 3419 | "solana-program", 3420 | "solana-sdk", 3421 | "subtle", 3422 | "thiserror", 3423 | "zeroize", 3424 | ] 3425 | 3426 | [[package]] 3427 | name = "solana-zk-token-sdk" 3428 | version = "1.10.14" 3429 | source = "registry+https://github.com/rust-lang/crates.io-index" 3430 | checksum = "d79d84783f3c7cb38c30e245284469f45c8cfa715bf2a79323e9fabe9b6afab5" 3431 | dependencies = [ 3432 | "aes-gcm-siv", 3433 | "arrayref", 3434 | "base64 0.13.0", 3435 | "bincode", 3436 | "bytemuck", 3437 | "byteorder", 3438 | "cipher 0.4.3", 3439 | "curve25519-dalek", 3440 | "getrandom 0.1.16", 3441 | "lazy_static", 3442 | "merlin", 3443 | "num-derive", 3444 | "num-traits", 3445 | "rand 0.7.3", 3446 | "serde", 3447 | "serde_json", 3448 | "sha3 0.9.1", 3449 | "solana-program", 3450 | "solana-sdk", 3451 | "subtle", 3452 | "thiserror", 3453 | "zeroize", 3454 | ] 3455 | 3456 | [[package]] 3457 | name = "solana_rbpf" 3458 | version = "0.2.24" 3459 | source = "registry+https://github.com/rust-lang/crates.io-index" 3460 | checksum = "41e138f6d6d4eb6a65f8e9f01ca620bc9907d79648d5038a69dd3f07b6ed3f1f" 3461 | dependencies = [ 3462 | "byteorder", 3463 | "combine", 3464 | "goblin", 3465 | "hash32", 3466 | "libc", 3467 | "log", 3468 | "rand 0.7.3", 3469 | "rustc-demangle", 3470 | "scroll", 3471 | "thiserror", 3472 | "time 0.1.43", 3473 | ] 3474 | 3475 | [[package]] 3476 | name = "spin" 3477 | version = "0.5.2" 3478 | source = "registry+https://github.com/rust-lang/crates.io-index" 3479 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3480 | 3481 | [[package]] 3482 | name = "spki" 3483 | version = "0.5.4" 3484 | source = "registry+https://github.com/rust-lang/crates.io-index" 3485 | checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27" 3486 | dependencies = [ 3487 | "base64ct", 3488 | "der", 3489 | ] 3490 | 3491 | [[package]] 3492 | name = "spl-associated-token-account" 3493 | version = "1.0.5" 3494 | source = "registry+https://github.com/rust-lang/crates.io-index" 3495 | checksum = "2b013067447a1396303ddfc294f36e3d260a32f8a16c501c295bcdc7de39b490" 3496 | dependencies = [ 3497 | "borsh", 3498 | "solana-program", 3499 | "spl-token", 3500 | ] 3501 | 3502 | [[package]] 3503 | name = "spl-memo" 3504 | version = "3.0.1" 3505 | source = "registry+https://github.com/rust-lang/crates.io-index" 3506 | checksum = "bd0dc6f70db6bacea7ff25870b016a65ba1d1b6013536f08e4fd79a8f9005325" 3507 | dependencies = [ 3508 | "solana-program", 3509 | ] 3510 | 3511 | [[package]] 3512 | name = "spl-token" 3513 | version = "3.3.0" 3514 | source = "registry+https://github.com/rust-lang/crates.io-index" 3515 | checksum = "0cc67166ef99d10c18cb5e9c208901e6d8255c6513bb1f877977eba48e6cc4fb" 3516 | dependencies = [ 3517 | "arrayref", 3518 | "num-derive", 3519 | "num-traits", 3520 | "num_enum", 3521 | "solana-program", 3522 | "thiserror", 3523 | ] 3524 | 3525 | [[package]] 3526 | name = "spl-token-2022" 3527 | version = "0.2.0" 3528 | source = "registry+https://github.com/rust-lang/crates.io-index" 3529 | checksum = "fce48c69350134e8678de5c0956a531b7de586b28eebdddc03211ceec0660983" 3530 | dependencies = [ 3531 | "arrayref", 3532 | "bytemuck", 3533 | "num-derive", 3534 | "num-traits", 3535 | "num_enum", 3536 | "solana-program", 3537 | "solana-zk-token-sdk 0.8.1", 3538 | "spl-memo", 3539 | "spl-token", 3540 | "thiserror", 3541 | ] 3542 | 3543 | [[package]] 3544 | name = "stable_deref_trait" 3545 | version = "1.2.0" 3546 | source = "registry+https://github.com/rust-lang/crates.io-index" 3547 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3548 | 3549 | [[package]] 3550 | name = "static_assertions" 3551 | version = "1.1.0" 3552 | source = "registry+https://github.com/rust-lang/crates.io-index" 3553 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3554 | 3555 | [[package]] 3556 | name = "strsim" 3557 | version = "0.8.0" 3558 | source = "registry+https://github.com/rust-lang/crates.io-index" 3559 | checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 3560 | 3561 | [[package]] 3562 | name = "subtle" 3563 | version = "2.4.1" 3564 | source = "registry+https://github.com/rust-lang/crates.io-index" 3565 | checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3566 | 3567 | [[package]] 3568 | name = "symlink" 3569 | version = "0.1.0" 3570 | source = "registry+https://github.com/rust-lang/crates.io-index" 3571 | checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" 3572 | 3573 | [[package]] 3574 | name = "syn" 3575 | version = "0.15.44" 3576 | source = "registry+https://github.com/rust-lang/crates.io-index" 3577 | checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 3578 | dependencies = [ 3579 | "proc-macro2 0.4.30", 3580 | "quote 0.6.13", 3581 | "unicode-xid 0.1.0", 3582 | ] 3583 | 3584 | [[package]] 3585 | name = "syn" 3586 | version = "1.0.94" 3587 | source = "registry+https://github.com/rust-lang/crates.io-index" 3588 | checksum = "a07e33e919ebcd69113d5be0e4d70c5707004ff45188910106854f38b960df4a" 3589 | dependencies = [ 3590 | "proc-macro2 1.0.38", 3591 | "quote 1.0.18", 3592 | "unicode-xid 0.2.3", 3593 | ] 3594 | 3595 | [[package]] 3596 | name = "synstructure" 3597 | version = "0.12.6" 3598 | source = "registry+https://github.com/rust-lang/crates.io-index" 3599 | checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 3600 | dependencies = [ 3601 | "proc-macro2 1.0.38", 3602 | "quote 1.0.18", 3603 | "syn 1.0.94", 3604 | "unicode-xid 0.2.3", 3605 | ] 3606 | 3607 | [[package]] 3608 | name = "tar" 3609 | version = "0.4.38" 3610 | source = "registry+https://github.com/rust-lang/crates.io-index" 3611 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 3612 | dependencies = [ 3613 | "filetime", 3614 | "libc", 3615 | "xattr", 3616 | ] 3617 | 3618 | [[package]] 3619 | name = "tarpc" 3620 | version = "0.27.2" 3621 | source = "registry+https://github.com/rust-lang/crates.io-index" 3622 | checksum = "b85d0a9369a919ba0db919b142a2b704cd207dfc676f7a43c2d105d0bc225487" 3623 | dependencies = [ 3624 | "anyhow", 3625 | "fnv", 3626 | "futures", 3627 | "humantime", 3628 | "opentelemetry", 3629 | "pin-project", 3630 | "rand 0.8.5", 3631 | "serde", 3632 | "static_assertions", 3633 | "tarpc-plugins", 3634 | "thiserror", 3635 | "tokio", 3636 | "tokio-serde", 3637 | "tokio-util 0.6.10", 3638 | "tracing", 3639 | "tracing-opentelemetry", 3640 | ] 3641 | 3642 | [[package]] 3643 | name = "tarpc-plugins" 3644 | version = "0.12.0" 3645 | source = "registry+https://github.com/rust-lang/crates.io-index" 3646 | checksum = "0ee42b4e559f17bce0385ebf511a7beb67d5cc33c12c96b7f4e9789919d9c10f" 3647 | dependencies = [ 3648 | "proc-macro2 1.0.38", 3649 | "quote 1.0.18", 3650 | "syn 1.0.94", 3651 | ] 3652 | 3653 | [[package]] 3654 | name = "tempfile" 3655 | version = "3.3.0" 3656 | source = "registry+https://github.com/rust-lang/crates.io-index" 3657 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3658 | dependencies = [ 3659 | "cfg-if", 3660 | "fastrand", 3661 | "libc", 3662 | "redox_syscall", 3663 | "remove_dir_all", 3664 | "winapi", 3665 | ] 3666 | 3667 | [[package]] 3668 | name = "termcolor" 3669 | version = "1.1.3" 3670 | source = "registry+https://github.com/rust-lang/crates.io-index" 3671 | checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 3672 | dependencies = [ 3673 | "winapi-util", 3674 | ] 3675 | 3676 | [[package]] 3677 | name = "terminal_size" 3678 | version = "0.1.17" 3679 | source = "registry+https://github.com/rust-lang/crates.io-index" 3680 | checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 3681 | dependencies = [ 3682 | "libc", 3683 | "winapi", 3684 | ] 3685 | 3686 | [[package]] 3687 | name = "textwrap" 3688 | version = "0.11.0" 3689 | source = "registry+https://github.com/rust-lang/crates.io-index" 3690 | checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 3691 | dependencies = [ 3692 | "unicode-width", 3693 | ] 3694 | 3695 | [[package]] 3696 | name = "thiserror" 3697 | version = "1.0.31" 3698 | source = "registry+https://github.com/rust-lang/crates.io-index" 3699 | checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" 3700 | dependencies = [ 3701 | "thiserror-impl", 3702 | ] 3703 | 3704 | [[package]] 3705 | name = "thiserror-impl" 3706 | version = "1.0.31" 3707 | source = "registry+https://github.com/rust-lang/crates.io-index" 3708 | checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" 3709 | dependencies = [ 3710 | "proc-macro2 1.0.38", 3711 | "quote 1.0.18", 3712 | "syn 1.0.94", 3713 | ] 3714 | 3715 | [[package]] 3716 | name = "thread_local" 3717 | version = "1.1.4" 3718 | source = "registry+https://github.com/rust-lang/crates.io-index" 3719 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 3720 | dependencies = [ 3721 | "once_cell", 3722 | ] 3723 | 3724 | [[package]] 3725 | name = "time" 3726 | version = "0.1.43" 3727 | source = "registry+https://github.com/rust-lang/crates.io-index" 3728 | checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 3729 | dependencies = [ 3730 | "libc", 3731 | "winapi", 3732 | ] 3733 | 3734 | [[package]] 3735 | name = "time" 3736 | version = "0.3.9" 3737 | source = "registry+https://github.com/rust-lang/crates.io-index" 3738 | checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" 3739 | dependencies = [ 3740 | "libc", 3741 | "num_threads", 3742 | ] 3743 | 3744 | [[package]] 3745 | name = "tiny-bip39" 3746 | version = "0.8.2" 3747 | source = "registry+https://github.com/rust-lang/crates.io-index" 3748 | checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d" 3749 | dependencies = [ 3750 | "anyhow", 3751 | "hmac 0.8.1", 3752 | "once_cell", 3753 | "pbkdf2 0.4.0", 3754 | "rand 0.7.3", 3755 | "rustc-hash", 3756 | "sha2 0.9.9", 3757 | "thiserror", 3758 | "unicode-normalization", 3759 | "wasm-bindgen", 3760 | "zeroize", 3761 | ] 3762 | 3763 | [[package]] 3764 | name = "tinyvec" 3765 | version = "1.6.0" 3766 | source = "registry+https://github.com/rust-lang/crates.io-index" 3767 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3768 | dependencies = [ 3769 | "tinyvec_macros", 3770 | ] 3771 | 3772 | [[package]] 3773 | name = "tinyvec_macros" 3774 | version = "0.1.0" 3775 | source = "registry+https://github.com/rust-lang/crates.io-index" 3776 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3777 | 3778 | [[package]] 3779 | name = "tokio" 3780 | version = "1.14.1" 3781 | source = "registry+https://github.com/rust-lang/crates.io-index" 3782 | checksum = "b9d0183f6f6001549ab68f8c7585093bb732beefbcf6d23a10b9b95c73a1dd49" 3783 | dependencies = [ 3784 | "autocfg", 3785 | "bytes", 3786 | "libc", 3787 | "memchr", 3788 | "mio", 3789 | "num_cpus", 3790 | "once_cell", 3791 | "parking_lot 0.11.2", 3792 | "pin-project-lite", 3793 | "signal-hook-registry", 3794 | "tokio-macros", 3795 | "winapi", 3796 | ] 3797 | 3798 | [[package]] 3799 | name = "tokio-macros" 3800 | version = "1.7.0" 3801 | source = "registry+https://github.com/rust-lang/crates.io-index" 3802 | checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7" 3803 | dependencies = [ 3804 | "proc-macro2 1.0.38", 3805 | "quote 1.0.18", 3806 | "syn 1.0.94", 3807 | ] 3808 | 3809 | [[package]] 3810 | name = "tokio-rustls" 3811 | version = "0.23.4" 3812 | source = "registry+https://github.com/rust-lang/crates.io-index" 3813 | checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3814 | dependencies = [ 3815 | "rustls", 3816 | "tokio", 3817 | "webpki", 3818 | ] 3819 | 3820 | [[package]] 3821 | name = "tokio-serde" 3822 | version = "0.8.0" 3823 | source = "registry+https://github.com/rust-lang/crates.io-index" 3824 | checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466" 3825 | dependencies = [ 3826 | "bincode", 3827 | "bytes", 3828 | "educe", 3829 | "futures-core", 3830 | "futures-sink", 3831 | "pin-project", 3832 | "serde", 3833 | "serde_json", 3834 | ] 3835 | 3836 | [[package]] 3837 | name = "tokio-stream" 3838 | version = "0.1.8" 3839 | source = "registry+https://github.com/rust-lang/crates.io-index" 3840 | checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" 3841 | dependencies = [ 3842 | "futures-core", 3843 | "pin-project-lite", 3844 | "tokio", 3845 | ] 3846 | 3847 | [[package]] 3848 | name = "tokio-tungstenite" 3849 | version = "0.17.1" 3850 | source = "registry+https://github.com/rust-lang/crates.io-index" 3851 | checksum = "06cda1232a49558c46f8a504d5b93101d42c0bf7f911f12a105ba48168f821ae" 3852 | dependencies = [ 3853 | "futures-util", 3854 | "log", 3855 | "rustls", 3856 | "tokio", 3857 | "tokio-rustls", 3858 | "tungstenite", 3859 | "webpki", 3860 | "webpki-roots", 3861 | ] 3862 | 3863 | [[package]] 3864 | name = "tokio-util" 3865 | version = "0.6.10" 3866 | source = "registry+https://github.com/rust-lang/crates.io-index" 3867 | checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" 3868 | dependencies = [ 3869 | "bytes", 3870 | "futures-core", 3871 | "futures-sink", 3872 | "log", 3873 | "pin-project-lite", 3874 | "slab", 3875 | "tokio", 3876 | ] 3877 | 3878 | [[package]] 3879 | name = "tokio-util" 3880 | version = "0.7.2" 3881 | source = "registry+https://github.com/rust-lang/crates.io-index" 3882 | checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c" 3883 | dependencies = [ 3884 | "bytes", 3885 | "futures-core", 3886 | "futures-sink", 3887 | "pin-project-lite", 3888 | "tokio", 3889 | "tracing", 3890 | ] 3891 | 3892 | [[package]] 3893 | name = "toml" 3894 | version = "0.5.9" 3895 | source = "registry+https://github.com/rust-lang/crates.io-index" 3896 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 3897 | dependencies = [ 3898 | "serde", 3899 | ] 3900 | 3901 | [[package]] 3902 | name = "tower-service" 3903 | version = "0.3.1" 3904 | source = "registry+https://github.com/rust-lang/crates.io-index" 3905 | checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" 3906 | 3907 | [[package]] 3908 | name = "tracing" 3909 | version = "0.1.34" 3910 | source = "registry+https://github.com/rust-lang/crates.io-index" 3911 | checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09" 3912 | dependencies = [ 3913 | "cfg-if", 3914 | "log", 3915 | "pin-project-lite", 3916 | "tracing-attributes", 3917 | "tracing-core", 3918 | ] 3919 | 3920 | [[package]] 3921 | name = "tracing-attributes" 3922 | version = "0.1.21" 3923 | source = "registry+https://github.com/rust-lang/crates.io-index" 3924 | checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" 3925 | dependencies = [ 3926 | "proc-macro2 1.0.38", 3927 | "quote 1.0.18", 3928 | "syn 1.0.94", 3929 | ] 3930 | 3931 | [[package]] 3932 | name = "tracing-core" 3933 | version = "0.1.26" 3934 | source = "registry+https://github.com/rust-lang/crates.io-index" 3935 | checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f" 3936 | dependencies = [ 3937 | "lazy_static", 3938 | "valuable", 3939 | ] 3940 | 3941 | [[package]] 3942 | name = "tracing-opentelemetry" 3943 | version = "0.15.0" 3944 | source = "registry+https://github.com/rust-lang/crates.io-index" 3945 | checksum = "599f388ecb26b28d9c1b2e4437ae019a7b336018b45ed911458cd9ebf91129f6" 3946 | dependencies = [ 3947 | "opentelemetry", 3948 | "tracing", 3949 | "tracing-core", 3950 | "tracing-subscriber", 3951 | ] 3952 | 3953 | [[package]] 3954 | name = "tracing-subscriber" 3955 | version = "0.2.25" 3956 | source = "registry+https://github.com/rust-lang/crates.io-index" 3957 | checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" 3958 | dependencies = [ 3959 | "sharded-slab", 3960 | "thread_local", 3961 | "tracing-core", 3962 | ] 3963 | 3964 | [[package]] 3965 | name = "try-lock" 3966 | version = "0.2.3" 3967 | source = "registry+https://github.com/rust-lang/crates.io-index" 3968 | checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 3969 | 3970 | [[package]] 3971 | name = "tungstenite" 3972 | version = "0.17.2" 3973 | source = "registry+https://github.com/rust-lang/crates.io-index" 3974 | checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5" 3975 | dependencies = [ 3976 | "base64 0.13.0", 3977 | "byteorder", 3978 | "bytes", 3979 | "http", 3980 | "httparse", 3981 | "log", 3982 | "rand 0.8.5", 3983 | "rustls", 3984 | "sha-1", 3985 | "thiserror", 3986 | "url", 3987 | "utf-8", 3988 | "webpki", 3989 | "webpki-roots", 3990 | ] 3991 | 3992 | [[package]] 3993 | name = "typenum" 3994 | version = "1.15.0" 3995 | source = "registry+https://github.com/rust-lang/crates.io-index" 3996 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3997 | 3998 | [[package]] 3999 | name = "unicode-bidi" 4000 | version = "0.3.8" 4001 | source = "registry+https://github.com/rust-lang/crates.io-index" 4002 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 4003 | 4004 | [[package]] 4005 | name = "unicode-normalization" 4006 | version = "0.1.19" 4007 | source = "registry+https://github.com/rust-lang/crates.io-index" 4008 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 4009 | dependencies = [ 4010 | "tinyvec", 4011 | ] 4012 | 4013 | [[package]] 4014 | name = "unicode-width" 4015 | version = "0.1.9" 4016 | source = "registry+https://github.com/rust-lang/crates.io-index" 4017 | checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 4018 | 4019 | [[package]] 4020 | name = "unicode-xid" 4021 | version = "0.1.0" 4022 | source = "registry+https://github.com/rust-lang/crates.io-index" 4023 | checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 4024 | 4025 | [[package]] 4026 | name = "unicode-xid" 4027 | version = "0.2.3" 4028 | source = "registry+https://github.com/rust-lang/crates.io-index" 4029 | checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" 4030 | 4031 | [[package]] 4032 | name = "universal-hash" 4033 | version = "0.4.1" 4034 | source = "registry+https://github.com/rust-lang/crates.io-index" 4035 | checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 4036 | dependencies = [ 4037 | "generic-array", 4038 | "subtle", 4039 | ] 4040 | 4041 | [[package]] 4042 | name = "unreachable" 4043 | version = "1.0.0" 4044 | source = "registry+https://github.com/rust-lang/crates.io-index" 4045 | checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" 4046 | dependencies = [ 4047 | "void", 4048 | ] 4049 | 4050 | [[package]] 4051 | name = "untrusted" 4052 | version = "0.7.1" 4053 | source = "registry+https://github.com/rust-lang/crates.io-index" 4054 | checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4055 | 4056 | [[package]] 4057 | name = "uriparse" 4058 | version = "0.6.4" 4059 | source = "registry+https://github.com/rust-lang/crates.io-index" 4060 | checksum = "0200d0fc04d809396c2ad43f3c95da3582a2556eba8d453c1087f4120ee352ff" 4061 | dependencies = [ 4062 | "fnv", 4063 | "lazy_static", 4064 | ] 4065 | 4066 | [[package]] 4067 | name = "url" 4068 | version = "2.2.2" 4069 | source = "registry+https://github.com/rust-lang/crates.io-index" 4070 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 4071 | dependencies = [ 4072 | "form_urlencoded", 4073 | "idna", 4074 | "matches", 4075 | "percent-encoding", 4076 | ] 4077 | 4078 | [[package]] 4079 | name = "utf-8" 4080 | version = "0.7.6" 4081 | source = "registry+https://github.com/rust-lang/crates.io-index" 4082 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4083 | 4084 | [[package]] 4085 | name = "valuable" 4086 | version = "0.1.0" 4087 | source = "registry+https://github.com/rust-lang/crates.io-index" 4088 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4089 | 4090 | [[package]] 4091 | name = "vec_map" 4092 | version = "0.8.2" 4093 | source = "registry+https://github.com/rust-lang/crates.io-index" 4094 | checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 4095 | 4096 | [[package]] 4097 | name = "version_check" 4098 | version = "0.9.4" 4099 | source = "registry+https://github.com/rust-lang/crates.io-index" 4100 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4101 | 4102 | [[package]] 4103 | name = "void" 4104 | version = "1.0.2" 4105 | source = "registry+https://github.com/rust-lang/crates.io-index" 4106 | checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 4107 | 4108 | [[package]] 4109 | name = "walkdir" 4110 | version = "2.3.2" 4111 | source = "registry+https://github.com/rust-lang/crates.io-index" 4112 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 4113 | dependencies = [ 4114 | "same-file", 4115 | "winapi", 4116 | "winapi-util", 4117 | ] 4118 | 4119 | [[package]] 4120 | name = "want" 4121 | version = "0.3.0" 4122 | source = "registry+https://github.com/rust-lang/crates.io-index" 4123 | checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 4124 | dependencies = [ 4125 | "log", 4126 | "try-lock", 4127 | ] 4128 | 4129 | [[package]] 4130 | name = "wasi" 4131 | version = "0.9.0+wasi-snapshot-preview1" 4132 | source = "registry+https://github.com/rust-lang/crates.io-index" 4133 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4134 | 4135 | [[package]] 4136 | name = "wasi" 4137 | version = "0.10.2+wasi-snapshot-preview1" 4138 | source = "registry+https://github.com/rust-lang/crates.io-index" 4139 | checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 4140 | 4141 | [[package]] 4142 | name = "wasm-bindgen" 4143 | version = "0.2.80" 4144 | source = "registry+https://github.com/rust-lang/crates.io-index" 4145 | checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad" 4146 | dependencies = [ 4147 | "cfg-if", 4148 | "wasm-bindgen-macro", 4149 | ] 4150 | 4151 | [[package]] 4152 | name = "wasm-bindgen-backend" 4153 | version = "0.2.80" 4154 | source = "registry+https://github.com/rust-lang/crates.io-index" 4155 | checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4" 4156 | dependencies = [ 4157 | "bumpalo", 4158 | "lazy_static", 4159 | "log", 4160 | "proc-macro2 1.0.38", 4161 | "quote 1.0.18", 4162 | "syn 1.0.94", 4163 | "wasm-bindgen-shared", 4164 | ] 4165 | 4166 | [[package]] 4167 | name = "wasm-bindgen-futures" 4168 | version = "0.4.30" 4169 | source = "registry+https://github.com/rust-lang/crates.io-index" 4170 | checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2" 4171 | dependencies = [ 4172 | "cfg-if", 4173 | "js-sys", 4174 | "wasm-bindgen", 4175 | "web-sys", 4176 | ] 4177 | 4178 | [[package]] 4179 | name = "wasm-bindgen-macro" 4180 | version = "0.2.80" 4181 | source = "registry+https://github.com/rust-lang/crates.io-index" 4182 | checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5" 4183 | dependencies = [ 4184 | "quote 1.0.18", 4185 | "wasm-bindgen-macro-support", 4186 | ] 4187 | 4188 | [[package]] 4189 | name = "wasm-bindgen-macro-support" 4190 | version = "0.2.80" 4191 | source = "registry+https://github.com/rust-lang/crates.io-index" 4192 | checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b" 4193 | dependencies = [ 4194 | "proc-macro2 1.0.38", 4195 | "quote 1.0.18", 4196 | "syn 1.0.94", 4197 | "wasm-bindgen-backend", 4198 | "wasm-bindgen-shared", 4199 | ] 4200 | 4201 | [[package]] 4202 | name = "wasm-bindgen-shared" 4203 | version = "0.2.80" 4204 | source = "registry+https://github.com/rust-lang/crates.io-index" 4205 | checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744" 4206 | 4207 | [[package]] 4208 | name = "web-sys" 4209 | version = "0.3.57" 4210 | source = "registry+https://github.com/rust-lang/crates.io-index" 4211 | checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283" 4212 | dependencies = [ 4213 | "js-sys", 4214 | "wasm-bindgen", 4215 | ] 4216 | 4217 | [[package]] 4218 | name = "webpki" 4219 | version = "0.22.0" 4220 | source = "registry+https://github.com/rust-lang/crates.io-index" 4221 | checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4222 | dependencies = [ 4223 | "ring", 4224 | "untrusted", 4225 | ] 4226 | 4227 | [[package]] 4228 | name = "webpki-roots" 4229 | version = "0.22.3" 4230 | source = "registry+https://github.com/rust-lang/crates.io-index" 4231 | checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf" 4232 | dependencies = [ 4233 | "webpki", 4234 | ] 4235 | 4236 | [[package]] 4237 | name = "whitelist-program" 4238 | version = "0.1.0" 4239 | dependencies = [ 4240 | "borsh", 4241 | "borsh-derive", 4242 | "num-derive", 4243 | "num-traits", 4244 | "solana-program", 4245 | "solana-program-test", 4246 | "solana-sdk", 4247 | "thiserror", 4248 | ] 4249 | 4250 | [[package]] 4251 | name = "winapi" 4252 | version = "0.3.9" 4253 | source = "registry+https://github.com/rust-lang/crates.io-index" 4254 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4255 | dependencies = [ 4256 | "winapi-i686-pc-windows-gnu", 4257 | "winapi-x86_64-pc-windows-gnu", 4258 | ] 4259 | 4260 | [[package]] 4261 | name = "winapi-i686-pc-windows-gnu" 4262 | version = "0.4.0" 4263 | source = "registry+https://github.com/rust-lang/crates.io-index" 4264 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4265 | 4266 | [[package]] 4267 | name = "winapi-util" 4268 | version = "0.1.5" 4269 | source = "registry+https://github.com/rust-lang/crates.io-index" 4270 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4271 | dependencies = [ 4272 | "winapi", 4273 | ] 4274 | 4275 | [[package]] 4276 | name = "winapi-x86_64-pc-windows-gnu" 4277 | version = "0.4.0" 4278 | source = "registry+https://github.com/rust-lang/crates.io-index" 4279 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4280 | 4281 | [[package]] 4282 | name = "windows-sys" 4283 | version = "0.36.1" 4284 | source = "registry+https://github.com/rust-lang/crates.io-index" 4285 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 4286 | dependencies = [ 4287 | "windows_aarch64_msvc", 4288 | "windows_i686_gnu", 4289 | "windows_i686_msvc", 4290 | "windows_x86_64_gnu", 4291 | "windows_x86_64_msvc", 4292 | ] 4293 | 4294 | [[package]] 4295 | name = "windows_aarch64_msvc" 4296 | version = "0.36.1" 4297 | source = "registry+https://github.com/rust-lang/crates.io-index" 4298 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 4299 | 4300 | [[package]] 4301 | name = "windows_i686_gnu" 4302 | version = "0.36.1" 4303 | source = "registry+https://github.com/rust-lang/crates.io-index" 4304 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 4305 | 4306 | [[package]] 4307 | name = "windows_i686_msvc" 4308 | version = "0.36.1" 4309 | source = "registry+https://github.com/rust-lang/crates.io-index" 4310 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 4311 | 4312 | [[package]] 4313 | name = "windows_x86_64_gnu" 4314 | version = "0.36.1" 4315 | source = "registry+https://github.com/rust-lang/crates.io-index" 4316 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 4317 | 4318 | [[package]] 4319 | name = "windows_x86_64_msvc" 4320 | version = "0.36.1" 4321 | source = "registry+https://github.com/rust-lang/crates.io-index" 4322 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 4323 | 4324 | [[package]] 4325 | name = "winreg" 4326 | version = "0.10.1" 4327 | source = "registry+https://github.com/rust-lang/crates.io-index" 4328 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 4329 | dependencies = [ 4330 | "winapi", 4331 | ] 4332 | 4333 | [[package]] 4334 | name = "xattr" 4335 | version = "0.2.3" 4336 | source = "registry+https://github.com/rust-lang/crates.io-index" 4337 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 4338 | dependencies = [ 4339 | "libc", 4340 | ] 4341 | 4342 | [[package]] 4343 | name = "yaml-rust" 4344 | version = "0.4.5" 4345 | source = "registry+https://github.com/rust-lang/crates.io-index" 4346 | checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 4347 | dependencies = [ 4348 | "linked-hash-map", 4349 | ] 4350 | 4351 | [[package]] 4352 | name = "yasna" 4353 | version = "0.5.0" 4354 | source = "registry+https://github.com/rust-lang/crates.io-index" 4355 | checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c" 4356 | dependencies = [ 4357 | "time 0.3.9", 4358 | ] 4359 | 4360 | [[package]] 4361 | name = "zeroize" 4362 | version = "1.3.0" 4363 | source = "registry+https://github.com/rust-lang/crates.io-index" 4364 | checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" 4365 | dependencies = [ 4366 | "zeroize_derive", 4367 | ] 4368 | 4369 | [[package]] 4370 | name = "zeroize_derive" 4371 | version = "1.3.2" 4372 | source = "registry+https://github.com/rust-lang/crates.io-index" 4373 | checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17" 4374 | dependencies = [ 4375 | "proc-macro2 1.0.38", 4376 | "quote 1.0.18", 4377 | "syn 1.0.94", 4378 | "synstructure", 4379 | ] 4380 | 4381 | [[package]] 4382 | name = "zstd" 4383 | version = "0.11.2+zstd.1.5.2" 4384 | source = "registry+https://github.com/rust-lang/crates.io-index" 4385 | checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4386 | dependencies = [ 4387 | "zstd-safe", 4388 | ] 4389 | 4390 | [[package]] 4391 | name = "zstd-safe" 4392 | version = "5.0.2+zstd.1.5.2" 4393 | source = "registry+https://github.com/rust-lang/crates.io-index" 4394 | checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4395 | dependencies = [ 4396 | "libc", 4397 | "zstd-sys", 4398 | ] 4399 | 4400 | [[package]] 4401 | name = "zstd-sys" 4402 | version = "2.0.1+zstd.1.5.2" 4403 | source = "registry+https://github.com/rust-lang/crates.io-index" 4404 | checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b" 4405 | dependencies = [ 4406 | "cc", 4407 | "libc", 4408 | ] 4409 | --------------------------------------------------------------------------------